-
SOLID 원칙 SRP : 단일 책임 원칙- Single Responsibility Principle- 객체는 오직 하나의 책임을 가져야 한다. OCP : 개방 - 폐쇄 원칙- Open Closed Principle- 객체는 확장에 대해서는 개방적이고 수정에 대해서는 폐쇄적이어야 한다. LSP : 리스코프 치환 원칙- Liscov Substitution Principle- 자식 클래스는 언제나 자신의 부모 클래스를 대체할 수 있다.- 부모 클래스가 들어갈 자리에 자식 클래스를 넣어도 계획대로 잘 동작해야 한다 ISP : 인터페이스 분리 원칙- Interface Segregation Principle- ?? DIP : 의존성 역전 원칙- Dependency Inversion Principle- 추상성이 높..
반드시 알아야할 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..