持续更新。。。
摘要:-------------------2011-05-16----------------------------------------------------------------------------------1.所有真正杰出的设计一旦被设计好,看起来都是那么的简单和显而易见。但是在获得杰出设计的过程中, 需要付出令人难以置信的努力-------------------2011-04-22----------------------------------------------------------------------------------1.所有让用户要考虑的产品,都是
阅读全文
posted @
2011-04-22 14:22
Ss_Andy
阅读(367)
推荐(0)
Oracle笔记三
摘要:用not exists 代替not inselect * from tsp_product p where not exists(select 'X' from tsp_orderitem i where p.id=i.product_id)select * from tsp_product p where id not in(select product_id from tsp_orderitem i where p.id=i.product_id)用exists 代替inselect * from tsp_product p where p.id in(select pro
阅读全文
posted @
2011-04-20 23:06
Ss_Andy
阅读(483)
推荐(0)