我有两个 SQL 查询:
$res1 = mysql_query("SELECT * FROM `table1` WHERE `user`='user'");
$i = mysql_fetch_assoc($res1);
$value1 = $i['num'];
和:
$res2 = mysql_query("INSERT INTO `table2` (`name`,`num`) VALUE ('name','$value1')");
如何将两个 SQL 查询合二为一?我需要从第一个请求的第二个查询中获取变量的值。可能吗?