2019-03-11
阅读量:
689
Mysql中的子查询与联合
# 子查询形如
select * from table1
where department in(select department
from table2
where where_condition)
#联合
select * from table1
union [all]
select * from table2
...
union [all]
select * from tablen;






评论(0)


暂无数据
推荐帖子
0条评论
1条评论
0条评论