ylbtech-SQL Server:exists(存在)的应用实例 |
SQL Server exists(存在)的应用实例。
1,exists(存在)的应用实例 |
-- =============================================-- ylb:本案例探讨的是:“exists”-- 11:25 2011/12/9-- =============================================use pubsgo--exists---P3:查询和出版社在同一个城市的作者姓名?select * from authors awhere exists(select * from publishers where city=a.city)
作者:出处:本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。 |