SQL은Structured Query Language(구조화된 쿼리 언어)의 약자 알고있으면 진짜 꿀쿼리! 1. 서로 다른 DB에 있을 경우 내부 data 통 복사-- DB111의 student_table을 DB222의 studnet_table로 옮기고 싶을 때INSERT INTO DB222.student_tableSELECT * FROM DB111.student_table;select * from student_table order by seq desc; 2. 테이블의 설정 값 변경 시ALTER TABLE student_tableADD COLUMN notice_flag varchar(2) COMMENT '공지사항 플래그' AFTER tsm_name; 3. 컬럼명을 가진 테이블 찾기SELECT table..