0

我在数据库中有两个表,我想使用 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,并且有两个字段mtMsgIdmsgStatus 例如:

select * from DN where mtMsgId = 'the whole above result'
4

1 回答 1

2

我想你正在寻找一个加入。您可以在 SQL 中执行此操作:

$result = mysql_query("select s.mtMsgId,j.msgStatus from JN j, SMS s WHERE s.mtMsgId = j.mtMsgId AND s.result = '0' ");

这命名了两个要从中获取数据的表,“SMS”为 s,“JN”为 j。您将结果与 s.mtMsgId = j.mtMsgId 进行“同步”(根据他们的 mtMsgIds 将它们结合起来),并且您对 SMS.result 为 0 的结果感兴趣。

于 2013-04-30T03:09:14.543 回答