使用 MySQL 和 PHP,我有两个表 ResponseTable 和 EntryTable
响应表有
RespID(pk,uq,ai, int), Response(string)
入口表有
EntryID(pk,uq,ai,int), RespID(int), UserID(int)
我想在 Response 不存在的 ResponseTable 中插入一个响应,然后根据响应对应的 ResponseTable 中的 RespID 在 EntryTable 中插入一个条目。
如何用最少的语句来做到这一点?
编辑:响应是独一无二的