sql插入更新
发布时间: 2023-10-14 11:41:44
㈠ sql查询 更新语句怎么写
1、首先需要打开sql server 数据库。
㈡ sql不同数据库间,同名数据表的资料如何插入、更新
你就像同一个库中的2个表那样写语句就可以了,只不过要注意的地方就是表名前要增加库名来引用,如: "库名.dbo.表名"的形式:
插入:
insert into text2.dbo.sp_qwe
select * from text1.dbo.sp_qwe where 查询条件
更新:
update t1
set t1.要更新的字段=t2.同名的字段
from text2.dbo.sp_qwe t1,text1.dbo.sp_qwe t2
where t1.关联字段=t2.关联字段
热点内容