MySql - 使用连接子查询插入多行?
此查询将返回代表论坛主题的项目 ID 列表:
SELECT id FROM `proj_objects` WHERE type='fthread';
此查询将订阅一个用户(其在用户表中的 ID 为“37”)到 ID 为“122”的论坛主题:
INSERT INTO `subscrips` VALUES ( 37, 122 ) ;
我想插入将为用户 37 订阅类型为 fthread 的所有项目对象的多行。我可以在单个查询中执行此操作吗?
This query will return a list of project IDs that represent forum threads:
SELECT id FROM `proj_objects` WHERE type='fthread';
This query will subscribe a user (whose ID in the users table is '37') to the forum thread with an ID of '122':
INSERT INTO `subscrips` VALUES ( 37, 122 ) ;
I'd like to insert multiple rows that will subscribe user 37 to all project objects where type is fthread. Can I do this in a single query?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用:
Use: