摘要:
常用的多表联合查询的sql语句:select table1.ID from table1 inner join table2 on table1.ID=table2.ID where table2.col2='xxx'改进后:select a.ID from table1 a,(select col1,ID from table2 where col2='xxx') b where a.ID=b... 阅读全文
posted @ 2006-07-13 14:56
红色石头
阅读(5874)
评论(5)
推荐(0)
浙公网安备 33010602011771号