我需要使用 php 查询来查询数据库。
我需要获取与 $somevalue 匹配的 id 和具有该 ID 查询表 2 的 id,以便我可以获取包含在找到该 id 的行中的字段值。
$somevalue = '123';
Select id from table1 where $somevalue = id
...so we have the ID ... now we query table 2
select id, field2 from table2 where id = $id
echo $id;
echo $field2
如何在 php 查询中执行此操作?