我有两个表 Table1 和 Table2。
我在 Table2 上使用插入,如下所示:
insert into table2
(colOne, colTwo, colThree) //and many more cols
values
(1, norman, US) //and many more values that come from a form and not table1
我希望只有在 Table1 中存在值 (1,norman, US) 时插入才能成功。值 (1,Norman,US) 来自一种形式。我怎么能做这样的事情。
目前我使用了 2 个步骤来做到这一点。一是检查值是否存在,二是插入