oracle 如何在Oracle中检索最后插入的记录

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/12437464/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-10 04:29:43  来源:igfitidea点击:

How to retrieve the last inserted record in Oracle

oracle

提问by user1673382

Possible Duplicate:
How to get the last row in a table - Oracle 11g?

可能的重复:
如何获取表中的最后一行 - Oracle 11g?

I would like to know how we can get the last inserted record values back as I want to retrieve and see the details that are inserted at last in the table

我想知道如何获取最后插入的记录值,因为我想检索并查看最后插入表中的详细信息

回答by jainvikram444

insert into mytable (...) values (...)
returning id into v_id;

回答by bonsvr

If you have a primary key:

如果您有主键:

select * from YOURTABLE
    where primary_key=(select max(primary_key) from YOURTABLE)