在 SQL 中的 select 语句中使用 insert
我有一个表 person,其中包含 personID、名字、姓氏、出生日期和性别列。当我插入每条记录时,我会使用序列自动增加 personID 列。我插入的每条记录都需要该值,因为我必须在另一个查询中发送它。有什么方法可以在插入语句中使用 select 语句来检索值。我无法使用“where”,因为我接受其他列的重复项。因此,每个唯一的人仅由 personID 来标识。我正在使用 jdbc API 连接到数据库。是否有可能在 JDBC 中进行调用?
I have a table person with columns personID, firstName, lastName, DOB and sex. As I insert each record I auto increment the personID column with a sequence. I need that value for each record I insert as I have to send it in another query. Is there any way I can use select statement in an insert statement to retrieve the value. I cannot use 'where' because I accept duplicates of other columns. So, each unique person is identified by the personID only. I'm using jdbc API to connect to DB. Is there any possibility of doing the call in JDBC?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
不确定这是否有帮助,但如果您使用 PL/SQL,则可以使用 RETURNING INTO 子句...
例如:
Ref: http://psoug.org/reference/insert.html
Not sure if this helps, but if you're using PL/SQL you can use the RETURNING INTO clause...
For example:
Ref: http://psoug.org/reference/insert.html
您可以在
INSERT
语句中使用RETURNING
关键字。You can use the
RETURNING
keyword in yourINSERT
statement.您尝试过 OUTPUT 命令吗?
Have you tried the OUTPUT command?
我认为
NEXTVAL
和CURRVAL
应该有所帮助。检查此参考:序列伪列 ,最后一个示例(重用序列的当前值)I think
NEXTVAL
andCURRVAL
should be of assistance. Check this reference: Sequence Pseudocolumns, the last example (Reusing the current value of a sequence)