안녕하세요

프로그램 과정에서 막혔던 문제들에 대한 해결책 정리


페이지 목록

2013년 6월 26일 수요일

[DB] Query 정리

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;