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 课程 连接查询的主要内容,如果未能解决你的问题,请参考以下文章

sql查询,求解

棘手的 SQL 连接查询

如何用SQL语句的查询实现两个表之间的查询连接

SQL中,查询学生姓名及所选修的课程名和成绩

SQL Server学习笔记——多表查询

SQL Server学习笔记——多表查询