我在Server 2005中使用了这段代码,它可以工作。
select name
from customers
where code = (select code from inventory where Active = 1)如何在Server 2000中做到这一点?
发布于 2016-07-29 08:52:59
使用IN..With =如果有多个代码,则查询将失败
select name from customers where code in (select code from inventory where Active=1)https://stackoverflow.com/questions/38654500
复制相似问题