首页 优化推广 经典SQL语句大全之提升篇

经典SQL语句大全之提升篇

来源: | 时间:2011/4/15 15:51:19 |

1、复制表(只复制结构,源表名:a 新表名:b)

SQL Server:select * into b from a where 1<>1
Access:
select top 0 * into b from a

2、拷贝表(拷贝数据,源表名:a 目标表名:b) (Access可用)

insert into b(a, b, c) select d,e,f from b;

3、跨数据库之间表的拷贝(具体数据使用绝对路径) (Access可用)
insert into b(a, b, c) select d,e,f from b in ‘具体数据库’ where 条件

insert into b(a, b, c) select d,e,f from b in "&Server.MapPath(".")&"\data.mdb" &" where 条件

4、子查询(表名1:a 表名2:b)

select a,b,c from a where a IN (select d from b ) 或者: select a,b,c from a where a IN (1,2,3)

5、显示文章、提交人和最后回复时间

select a.title,a.username,b.adddate from table a,(select max(adddate) adddate from table where table.title=a.title) b

6、外连接查询(表名1:a 表名2:b)

select a.a, a.b, a.c, b.c, b.d, b.f from a LEFT OUT JOIN b ON a.a = b.c

7、在线视图查询(表名1:a )

select * from (SELECT a,b,c FROM a) T where t.a >
TAG:高端网站建设高端网站设计网站制作网站建设

服务热线

153 8323 9821

功能和特性

价格和优惠

网站和维护

推广和优化

微信服务号