2017年11月29日

SQL 表连接

摘要: 一、表连接【重难点】 查询语句中from后面的表超过2个,这种连接称为表连接查询 分类:内连接、外连接、自连接、交叉连接 语法: select * from 表1 join 表2 on 连接条件 where...group by..having..order by... 1、内连接 [inner] 阅读全文

posted @ 2017-11-29 18:35 弘道法天 阅读(119) 评论(0) 推荐(0) 编辑

SQL 小技巧 2

摘要: 查询倒数第4位是a的员工信息 where last_name like '%a___' 查询没填email的员工信息 where email is null 查询1998年入职的员工信息 where hire_date between '1-1月-98' and '31-12月-98' where 阅读全文

posted @ 2017-11-29 18:16 弘道法天 阅读(109) 评论(0) 推荐(0) 编辑

导航