Week3 學習資料庫原理和SQL

學會用 select 語句添加欄位和找出需要的資料

例如:

select colA,colB,colC into newtable from oldtable where
colA='x' and colB is not null
select colA from oldtable group by colA;

select 進階學習,可能要講講 join、union,以及多個查詢組合成的嵌套查詢,或者是子查詢的模式,以及模糊查詢。

學會 alter 學會增加,減少欄位

學會更新資料

Last updated