데이터 추가(insert)


데이터 조회(select)
선택 데이터 조회 : select column1, solumn2, ... from tablename;

모든 데이터 조회 : select * from tablename;

특정 조건에 부합하는 데이터 조회(where + select)
- select column1, column2, ... from tablename where condition;

데이터 수정(update + select + where)


데이터 삭제(delete)

데이터 정렬(order by) : select문에서 특정 컬럼을 기준으로 정렬
select column1, column2, from tablename order by column1, column2 ASC|DESC;


default는 asc이며, order by column이 다수인 경우 차례대로 적용됨.












