dml1 DML CRUD 개념간단정리 952's 접근 dml 데이터 조작 언어 crud 정리 1. c (create) insert into 테이블 values(col1,col2...) 생략 가능한 필드 null이 허용된 필드 default가 설정된 컬럼 auto increment가 설정된 컬럼 2. r (read) select 실행 시 실행순서 from -> where -> group by -> having -> select -> order by 없다면 생략 select 컬럼명or * from 테이블 where 조건 when then when age>19 then '성인' when age>60 then '노인' else '청소년' end '연령대' and or not 사용가능 and 그리고 or 또는 not 아닌 -> not(age = '15' or age.. 2022. 5. 9. 이전 1 다음