当前位置:首页 > 数据库

SQL把某张表的数据插入到另一张表里

大滑稽11年前 (2014-11-22)数据库1418

insert into [SignUser]([user],[pwd],[AddDate]) select [user],[pwd],[AddDate] from [user]

扫描二维码推送至手机访问。

版权声明:本文由第★一★次发布,如需转载请注明出处。

本文链接:https://blog.wpers.net/post/21.html

分享给朋友:

“SQL把某张表的数据插入到另一张表里” 的相关文章

SQL分页

select * from (select ROW_NUMBER() over(order by id desc) as row,* from Article) twhere t.row between 3 and 33with temp…

Access数据库防下载

create table [notdown]([notdown] oleobject)insert into [notdown](notdown) values (0x3C25)…