SQL学习(三)UNION运算符和FOR ALL条件
时间:2011-03-04 来源:青苹果
实质就是关系运算中的并
例:建立一个包含了顾客所在的或者代理商所在的或者两者接在的城市的名单
select city from customers
union select city from agents;
当设计到的子查询项目大于或等于3时可用()
(select city from customers
union select city from agents)
union all select city from products;
2. 除法: SQL "FOR ALL..."条件
相关阅读 更多 +