使用$ _POST和另一个表中的值添加新行

时间:2015-05-07 13:27:07

标签: php mysql

我试图在SQL表中使用来自多个源的数据(使用PHP)插入新行。具体来说,我希望行的一部分具有$_POST值,而另一行需要具有另一个表中的数据。

想象一下包含以下列的表:

topic_id, message_id, message, topicmessage_index

我希望插入的行包含message变量中的$_POST和来自select语句的其余数据。所以,我正在寻找类似于此的查询:

Insert into Table ( message, topic_id, message_id, topicmessage_index)
$message , Select topic_id, message_id, topicmessage_index from table2

这可能吗?如果是这样,我怎么能做到这一点?

0 个答案:

没有答案