SQL 行插入表中 +在一条语句中将键插入其链接表(多对多关系)

发布于 2024-09-30 04:41:37 字数 156 浏览 7 评论 0原文

嘿,我习惯了 ORM,所以我非常缺乏 sql 经验。我想知道将一行插入表中的最佳方法是什么,即与另一个表处于多对多关系,并且在一个语句中还将一行两个外键插入到特定的链接表中以保留数据完整性。

如果有人使用 spring jdbcTemplate,我还想知道它是否支持此任务。提前致谢

Hey, I'm used to ORM so I have huge absence of sql experience. I want to know what is the best way to insert a row into a table, that is in many-to-many relationship with another table, and within the one statement also insert a row of two foreign keys into the particular linking table to preserve data integrity.

If anybody is using spring jdbcTemplate, I'd also want to know whether it has a support for this task. Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

驱逐舰岛风号 2024-10-07 04:41:37

这通常是存储过程的用途,例如

CREATE PROC MyInsertM2M(@fieldname1 int, @fieldname2 varchar(20), @Key1 int, @Key2 int etc)
AS
BEGIN

INSERT INTO MyMainTable(fieldname1, fieldname2...)
VALUES(@fieldname1, @fieldname2...)

INSERT INTO MyResolverTable(KeyField1, Keyfield2)
VALUES (@Key1, Key2)

END

(假设是 sql server)

然后 google BEGIN TRAN、COMMIT TRAN 和 ROLLBACK。

That's typically what stored procedures are used for, eg something like

CREATE PROC MyInsertM2M(@fieldname1 int, @fieldname2 varchar(20), @Key1 int, @Key2 int etc)
AS
BEGIN

INSERT INTO MyMainTable(fieldname1, fieldname2...)
VALUES(@fieldname1, @fieldname2...)

INSERT INTO MyResolverTable(KeyField1, Keyfield2)
VALUES (@Key1, Key2)

END

(assuming sql server)

Then google BEGIN TRAN, COMMIT TRAN and ROLLBACK.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文