Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 mysql 新手,
我有一个应用程序,在其中我从 mysql 表中获取动态值说“表 A”到下拉框中,并希望将此下拉框值插入到另一个表中说“表 B”,同时插入要插入相关的“主键”值从“表 A”到“表 B”。
任何人都可以提供任何建议或想法如何做到这一点..提前感谢您的回复。
据我了解,
我希望你有下拉值,
在插入时,您应该使用子查询使用 where 子句选择值的 id
例子:
Insert into Table B (name ,id )values('name',(Select id from table A where Value==""))
参考文件
如果错了请纠正我