sql如何引用另一個表的一列值?
SQL將一個表中的某一列值全部插入到另一個表中
插入的話:
insert into a(col) select col from b;
更新的話:
update a set col=select col from b where a.id=b.id;
判斷表是否存在數據庫中,存在就刪除
if exists (select * from Sysobjects where name='temp')
begin
drop table temp
end
insert into a(columens)
select (columens) from b
希望對你有幫助。
上一篇拍視頻現在是第三天
下一篇下班后可以去哪里打工