我有 2 个表,table1
在table2
MySql 中
表格1
"id" "name" "description" "path" "type" "country"
表2
"id" "type" "country"
"2" "5" "US"
"3" "10" "US"
"1" "1" "US"
我正在尝试将数据与来自表单的数据一起插入到table1
from中。table2
所以这是我正在尝试做的事情,但我认为它不正确。你能帮忙吗?名称、描述和路径来自一个表单。
insert into table1 (id,type,country,name,description,path)
values
( (select id,type,country from table2 where id = 1),'My Name,'MyDescription','My Path')