SQL 课程 连接查询
Posted 兔小灰385
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL 课程 连接查询相关的知识,希望对你有一定的参考价值。
今天,我主要是对前面所学习过的子查询进行了复习,然后学习了连接查询join on 的内容。
如:
select renyuan.code,name,age ,sex , bumen.bname,bceo from renyuan,bumen where renyuan.bc=bumen.bcode
将以上的查询语句写成连接查询:
select renyuan.code,name,age ,sex , bumen.bname,bceo from renyuan join bumen on renyuan.bc=bumen.bcode
之后,我学习了局部变量。
例:
declare @code int
set @code =10003
select age from renyuan where [email protected]
以上是关于SQL 课程 连接查询的主要内容,如果未能解决你的问题,请参考以下文章