목록DB (3)
-
반드시 알아야할 MySQL 특징 세 가지 http://gywn.net/2011/12/mysql-three-features/
SyntaxSELECT ... INTO DUMPFILE 'file_path' DescriptionSELECT ... INTO DUMPFILE is a SELECT clause which writes the resultset into a single unformatted row, without any separators, in a file. The results will not be returned to the client.file_path can be an absolute path, or a relative path starting from the data directory. It can only be specified as a string literal, not as a variable. However..
트리거 - INSERT, UPDATE 또는 DELETE 작업이 테이블에서 수행될 때 자동으로 실행되는 특별한 종류의 저장형 프로시저 - 관련된 insert, update, delete가 정의된 테이블의 경우에만 발생함. 프로시저 - 트랜잭션, ACID - 모든 단계가 수행되거나 수행되지 않는 논리적인 작업단위 - ACID는 트랜젝션 처리 시스템 내에 갖춰야 할 4가지 속성A : Atomic(원자성)C : Consistency(일관성)I : Isolation(격리)D : Durability(내구성) 인덱스 - 책의 색인과 유사. - SQL Server의 자료 조회를 빠르게 한다. - 클러스터된 인덱스, 클러스터되지 않은 인덱스 두 유형이 있음.클러스트된 인덱스 : 테이블에 클러스터된 인덱스를 생성할 때 모..