首页
注册
登录
V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请
登录
V2EX 提问指南
广告
V2EX
›
问与答
mysql 如何查询 a 表中所有的 id 并写入 b 表数据
kaiki
·
2020-12-22 23:29:32 +08:00
· 620 次点击
这是一个创建于 1418 天前的主题,其中的信息可能已经有所发展或是发生改变。
就写入 id 就行,之后弄个触发器让它新增自动写入好了。
可以的话跳过已存在的 id 数据
写入
触发器
MySQL
数据
2 条回复
1
kaiki
OP
2020-12-22 23:35:06 +08:00
算了,想起来了
insert into b(m_id) select id from a where id not in(select id from b);
2
kaiki
OP
2020-12-22 23:35:34 +08:00
@
kaiki
打错了
insert into b(id) select id from a where id not in(select id from b);
关于
·
帮助文档
·
博客
·
API
·
FAQ
·
实用小工具
·
2747 人在线
最高记录 6679
·
Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 18ms ·
UTC 07:42
·
PVG 15:42
·
LAX 23:42
·
JFK 02:42
Developed with
CodeLauncher
♥ Do have faith in what you're doing.