色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

sql如何引用另一個表的一列值

劉柏宏2年前16瀏覽0評論

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

希望對你有幫助。

java引用sql,sql如何引用另一個表的一列值