sql批量增加和修改语句

来源:互联网 发布:怎么通过淘宝客买东西 编辑:程序博客网 时间:2024/06/04 19:31

INSERT:

insert into table1
(
t1_col_1
)
select t2_col_1 from table2

 

UPDATE:
update table1 set
tq_col_1=a.t2_col_1
from table2 as a

原创粉丝点击