我有一个以字段“c_number”作为主键的表。现在我在两个表中使用了这个主键作为外键:通话和计费。谁能帮助我为什么这个查询不起作用
$q="select c_number, type, billing.days from calls, billing where calls.c_number=billing.c_number group by c_number";
$r=mysql_query($q);
while($row=mysql_fetch_array($r))
{
echo $row['days'];
}
查询不起作用,并给我错误:
Warning: mysql_fetch_assoc() expects parameter 1 to be resource, boolean given in C:\wamp\www\vas1\b.php on line 61
第 61 行:
while($row=mysql_fetch_array)