码迷,mamicode.com
首页 > 数据库 > 详细

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

时间:2015-09-21 17:27:55      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:

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‘;

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

标签:

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!