我在数据库中有两个表,我想使用 ist 表的结果并将其与第二个表进行比较,例如:
// we connect to example.com and port 3307
mysql_connect("localhost", "root", "pass123") or die(mysql_error());
mysql_select_db("PhGateway") or die(mysql_error());
$result = mysql_query("select mtMsgId from SMS where SMS.`result` = '0' ");
while($row = mysql_fetch_array($result))
{
$mtMsgid=$row['mtMsgId'];
}
我想与另一个表进行比较然后显示结果,$mtMsgid
另一个表名为 DN,并且有两个字段mtMsgId
,msgStatus
例如:
select * from DN where mtMsgId = 'the whole above result'