首页 > 数据库技术 > 详细

数据库语句之建表、拷贝数据表

时间:2015-07-14 17:53:44      阅读:181      评论:0      收藏:0      [点我收藏+]

1、数据库建表语句

create table tb_People(id integer primary key, Name varchar(255), Sex varchar(255))

2、同数据库拷贝数据表

sql:
insert into table1 select*from table2(完全拷贝)
insert into table1 select distinct*from table2(不重复拷贝);
insert into table1 select top 10*from table2(前10条拷贝)

3、不在同一数据库中数据表拷贝

DB1、DB2为两个数据库,tb_boy、tb_girl分别为前两个数据库的表
sql:

insert into DB1.tb_boy select*from DB2.tb_girl
insert into  DB1.tb_boy select*from DB2.tb_girl(完全拷贝)
insert into  DB1.tb_boy select distinct*from DB2.tb_girl(不重复拷贝);
insert into  DB1.tb_boy select top 10*from DB2.tb_girl(前10条拷贝)

版权声明:本文为博主原创文章,未经博主允许不得转载。

数据库语句之建表、拷贝数据表

原文:http://blog.csdn.net/singular2611/article/details/46881427

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!