摘要:
SQL中in可以分为三类: 形如select * from t1 where f1 in ('a','b'),应该和以下两种比较效率:select * from t1 where f1='a' or f1='b' 或者 select * from t1 where f1 ='a' union all select * from t1 f1='b',你可能指的不是这一类,这里不做讨论。 形如select * from t1 where f1 in (select f1 from t2 where t2 阅读全文
posted @ 2014-01-10 08:54
福州软件定制
阅读(676)
评论(0)
推荐(0)
2014年1月10日