SQL - 无法从特定表中选择数据

时间:2014-03-22 21:04:12

标签: sql

$rs77 = $connector->query("SELECT * FROM content WHERE topic='1' AND date='$date' ORDER BY cpc DESC LIMIT 4");

    while ($rw77 = $connector->fetchArray($rs77))
    {
        switch($rw77['type']) {
            case "vid":
            ?>.... This is just a little part of my code.

它工作正常,并且在一瞬间(db或代码中没有任何变化)。我试图显示mysql_error。但它并没有给我任何表现。

 $your_query = "SELECT * FROM content WHERE topic='1' AND date='$date' ORDER BY cpc DESC LIMIT 4";
     $value = mysql_query($your_query) or die("A MySQL error has occurred.<br />Your Query: " . $your_query . "<br /> Error: (" . mysql_errno() . ") " . mysql_error());

可能是什么问题?谢谢。

更新:所有其他表都很好用。我可以从中选择数据。

这是我的表格: enter image description here

0 个答案:

没有答案