Select
Select Column From Table where Col1 = xx and Col2 = yy or Col3 = zz
Insert
Insert Into Table (Col1, Col2, Col3) VALUES (Co1, Col2, Col3)
String의 경우 ' ' 혹은 " " 로 감싸준다. "이순신" '이순신'
Update
밋
Update tabe set col1 = val1 , co2 = val2 where some_col = som_val;
Add a Column
Alter Table contacts Add email VARCHAR(60);
Column 가져오기
Show columns from Table;