使用公用表表达式(CTE)简化嵌套SQL

转自:http://www.blogjava.net/nokiaguy/archive/2009/nokiaguy/archive/2009/01/31/252787.html

先看下面一个嵌套的查询语句:

select * from person.StateProvince where CountryRegionCode in
(
select CountryRegionCode from person.CountryRegion where Name like ' C% ' )


你可能感兴趣的:(数据库,职场,2005,休闲,CTE)