时间:2021-07-01 10:21:17 帮助过:12人阅读
另一种写法 select 列a,列b from 表p join 表q on p.o=q.o
例:select Student.Sno,Sname,Cno,Degree from Student,Score where Student.Sno=Score.Sno
= select Student.Sno,Sname,Cno,Degree from Student join Score on Student.Sno=Score.Sno
在 join前加上left 是以 join左边的表为主 select Student.Sno,Sname,Cno,Degree from Student left join Scroe on Student.Sno=Scroe.Sno
在 join前加上right是以join右边的表为主 select Student.Sno,Sname,Cno,Degree from Student right join Scroe on Student.Sno=Scroe.Sno
2.纵向连接 两个表之间添加 union
只有两个表列数一样,每列对应的数据类型一样,才可以进行纵连接
【2017-03-13】Tsql 表连接
标签:卡尔 之间 笛卡尔 select from color 写法 建立连接 http