动态生成父键到另一个查询中
我必须从一个表中获取一个值,该表是我刚刚使用 seq.nextval(例如查询 1)添加到另一个表中的,以便通过查询 2 将更多信息输入到另一个表中。我使用对象将值传递给 sql(oracle) .我正在使用Spring框架的JDBCTemplate。
你能帮我吗? 谢谢。
I have to take a value from one table which I have just added using seq.nextval(say Query 1) into another table for entering further information into another table through Query 2.I have used objects to pass values to the sql(oracle).I am using Spring framework's JDBCTemplate.
Can you help me with that.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 seq.currval 获取序列的当前值,并将其包含在后续插入中。
use seq.currval to get the current value of the sequence, and include that in your subsequent insert.