Oracle 查询出来的数据取第一条

时间:2015-09-21 17:26:06   收藏:0   阅读:416

Oracle 查询出来的数据取第一条

---------------------------------------------------------------------------

转载自:http://www.itpub.net/thread-246442-1-1.html

 

select * from (select * from <table> order by <key>) where rownum=1;

select * from (select * from <table> order by <key> desc) where rownum=1;

 

delete from tbl where a=‘a‘ and b=‘b‘ and c=‘c‘;

原文:http://www.cnblogs.com/dtest/p/4826312.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!