데이터베이스1 SQL 문법 정리 select select * from 테이블명; 테이블 구조 참조 desc 테이블명; 열 지정 select no, name from 테이블명; 행지정 where select * from sample where no=2; select * from sample where name='a'; select * from sample where name is null; 아닌 행 select * from sample no 2; and select * from sample where a0 and b0; or select * from sample where a0 or b0; % 임의의 문자열 _ 임의의 문자 하나 like select * from sample where text like 'sql%'; 이스케이프 selec.. 2022. 6. 25. 이전 1 다음