[SQL語法](note)將一資料表複製

摘要:[SQL] [語法]將一 TABLE 複製

 
1.只複製結構,不複製資料 
select * into 新table from 舊table where 1=0 

2.複製結構也複製資料 
select * into 新table from 舊table 

3.指定匯入某欄位的資料至新的資料表(指令一執行即產生新table) 
select a,b,c into 新table from 舊table 
  

select ac1,ac2,bc1,bc2 into table_c 
from table_a 
join table_b on aid=bid


4.將A table某欄位資料複製到B table某欄位 
update B 
set B's column= (select a's column from A where A's column=B's column) 

5.選取B_able某欄位匯入資料至「已存在的A_table」的欄位中
Insert into A_table(A.欄1,A.欄2)  select (B.欄1,B.欄2) from B_able

 

 
--
強烈建議購物網店或實體店家都必須使用關鍵字廣告or原生廣告來將Yahoo上與聯播網的廣大流量導至自己的網站!

●Yahoo關鍵字廣告/原生廣告
◆Yahoo廣告方案介紹 : https://goo.gl/5k8FHW
◆Yahoo廣告剖析與運用 : http://goo.gl/4xjUJD

 

​​