일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- 페이지 이동
- \
- 파일호출
- Alert
- 팝업창
- "
- 미래직장
- ;
- session.getAttribute
- opener
- target
- 빈즈
- 영감
- 로그인화면
- 데이터사이언스
- 동기 부여
- BEANS
- session.removeAttribute
- 자바빈즈
- 향상된 for문
- javaBeans
- 버리자
- 페이지이동
- 동기부여
- static
- 파일 호출
- scanner
- session.setAttribute
- iframe
- Import
- Today
- Total
목록Programming Language/SQL (Maria DB) (21)
갈림길 이정표
너무많은 연산(명령어 안에 명령어)쓰면 과부하 걸릴 수 있어 추천 하지 않음 표준 SQL (Maria DB, MySQL 표준에 가깝다) 비표준 SQL (Oracle 에서는 쓸수 없다) [limit]
DB 자료: http://cafe.daum.net/flowlife/HqLk/63 The Most Important SQL Commands 더보기 SELECT - extracts data from a database (Row × Column) UPDATE - updates data in a database DELETE - deletes data from a database INSERT INTO - inserts new data into a database CREATE DATABASE - creates a new database ALTER DATABASE - modifies a database CREATE TABLE - creates a new table ALTER TABLE - modifies a tabl..
보호되어 있는 글입니다.
Index(색인): 검색속도를 향상시키기 위해 검색이 빈번한 칼럼에 색인 부여 - 일부 저장 메모리 할당됨 = 메모리 소모에도 불구하고 가치 있음 [편리성] - 검색 속도가 빨라짐 - pk칼럼은 자동으로 색인 부여 됨. - index를 사용해야 하는 경우: ①레코드 수가 많을 때, ②join이 자주 등장할 때, ③null이 많이 포함된 칼럼 검색할 경우 - index를 자제해야 하는 경우: 입력, 수정, 삭제가 빈번한 테이블 (Index가 자주 바뀌면 속도가 느려짐) -기본 BTREE (Balaneced TREE) -테이블 Index (기본), 각 field Index 부여 가능 (creat index 또는 alter table 테이블 명 add index ) -Index 생성: Create Index ..
mysql -u root -p로 입력 https://www.w3schools.com/sql/sql_ref_check.asp SQL CHECK SQL CHECK Keyword ❮ SQL Keywords Reference CHECK The CHECK constraint limits the value that can be placed in a column. SQL CHECK on CREATE TABLE The following SQL creates a CHECK constraint on the "Age" column when the "Persons" table is created. The CHE www.w3schools.com ※ 그냥 지시어: Database table 관련 ※ [지시어]: (각 table ..