我有 3 个相互关联的表
table1 (for insert)
*******************
id1 | lable | line1
table2
********************
id2 | id1 | id3
table3
*******************
id3 | line1
如何在 SQL(MySQL) 脚本中编写而不是 php 脚本?
INSERT INTO table1 (id1,lable,line1) VALUES ($from_GET, $from_GET,How can I got from table3?);
谢谢