码迷,mamicode.com
首页 > 数据库 > 详细

mssql联合查询

时间:2014-12-14 10:34:10      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:style   使用   sp   on   bs   ad   ef   as   nbsp   

table1表结构(用户名,密码) 

userid username password
1 user1 pwd1
2 user2 pwd2

table2表结构(用户积分,等级) 

userid score level
1 20 3
3 50 6

第一:内联(inner join)

如果想把用户信息,积分,等级都列出来.那么一般会这样写

select * from table1 t1 ,table2 t2 where t1.userid = t2.userid  

其实这样的结果等同于select * from table1 t1 inner join table2 t2 on t1.userid=t2.userid

就是把两个表中都存在userid的行拼成一行.这是内联.但后者的效率会比前者高很多.建议用后者的写法.

运行结果:

userid username password userid score level
1 user1 pwd1 1 20 3

第二:左联(left outer join)显示左表中的所有行

select * from table1 t1 left outer join table2 t2 on t1.userid=t2.userid

运行结果:

userid username password userid score level
1 user1 pwd1 1 20 3
2 user2 pwd2 null null null

第三:右联(right outer join)显示右表中的所有行

select * from table1 t1 right outer join table2 t2 on t1.userid=t2.userid

运行结果:

userid username password userid score level
1 user1 pwd1 1 20 3
null null null 3 50 6

第四:全联(full outer join)显示两边表中所有行

select * from table1 t1 full outer join table2 t2 on t1.userid=t2.userid

运行结果:

userid username password userid score level
1 user1 pwd1 1 20 3
2 user2 pwd2 null null null
null null null 3 50 6

总结,关于联合查询,本人已测试过.效率的确比较高,4种联合方式如果可以灵活使用,基本上复杂的语句结构也会简单起来.这4种方式是:

Inner join          left outer join           right outer join        full outer join

mssql联合查询

标签:style   使用   sp   on   bs   ad   ef   as   nbsp   

原文地址:http://www.cnblogs.com/atlanticD/p/4162233.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!