今天,我主要是对前面所学习过的子查询进行了复习,然后学习了连接查询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]
时间: 2024-12-28 01:04:31