2

试图自己修复现有代码的错误,而不是我自己。使用此代码的错误是,除非相应的 id 在第二个表中有项目,否则它根本不会显示在输出中。在第一个表(邮件)中,我有多个条目,他们得到在输出中过滤掉确实显示了正确的邮件总数......除非邮件在第二个表中有项目,否则不会输出它。我尝试了另一个使用差异连接的查询

SELECT 
    id, 
    messageType, 
    sender, 
    mail.receiver, 
    subject, 
    body, 
    has_items, 
    money, 
    cod, 
    checked 
FROM 
    mail 
        LEFT OUTER JOIN mail_items 
            ON id = mail_id 
        LEFT JOIN item_instance 
            ON item_guid = guid

问题是......我收到错误:您的 SQL 语法有错误;检查与您的 MySQL 服务器版本相对应的手册,以获取在“LIMIT 1”附近使用的正确语法

我该怎么做才能使邮件表和 mail_items 表在正确地从第三个表中获取项目 guid 时加入,并输出邮件表条目,即使在 mail_items 表中没有该邮件的项目。

//==========================$_GET and SECURE=================================
$start = (isset($_GET['start'])) ? $sqlc->quote_smart($_GET['start']) : 0;
if (is_numeric($start)); 
else 
    $start = 0;

$order_by = (isset($_GET['order_by'])) ? $sqlc->quote_smart($_GET['order_by']) : 'id';
if (preg_match('/^[_[:lower:]]{1,12}$/', $order_by)); 
else 
    $order_by = 'id';

$dir = (isset($_GET['dir'])) ? $sqlc->quote_smart($_GET['dir']) : 1;
if (preg_match('/^[01]{1}$/', $dir)); 
else 
    $dir = 1;

$order_dir = ($dir) ? 'ASC' : 'DESC';
$dir = ($dir) ? 0 : 1;
//==========================$_GET and SECURE end=============================

$query = $sql->query("SELECT a.id, a.messageType, a.sender, a.receiver, a.subject, a.body, a.has_items, a.money, a.cod, a.checked, b.item_guid, c.itemEntry
                      FROM mail a INNER JOIN mail_items b ON a.id = b.mail_id LEFT JOIN item_instance c ON b.item_guid = c.guid ORDER BY $order_by $order_dir LIMIT $start, $itemperpage");
$total_found = $sql->num_rows($query);
$this_page = $sql->num_rows($query);
$query_1 = $sql->query("SELECT count(*) FROM `mail`");
$all_record = $sql->result($query_1,0);
4

3 回答 3

0

试试这种类型, 选择 * from table1 as T1 join table2 as T2 on T.id=T2.id join table3 as T3 on T2.id=T3.id

于 2012-09-09T06:11:16.647 回答
0

尝试这样的事情:

SELECT 
/*
    The columns that you want to select
*/
FROM 
    mail a
LEFT OUTER JOIN mail_items b ON a.id = b.mail_id 
LEFT JOIN item_instance c ON b.item_guid = c.guid

请注意,当您尝试选择列时,请确保将正确的表别名附加到列名。这里的表mail,mail_items和,item_instance分别作为它们的别名。abc

如果您使用上述查询为表保留相同的别名,则需要对代码执行以下修改:

$order_by = (isset($_GET['order_by'])) ? $sqlc->quote_smart($_GET['order_by']) : 'id';
if (preg_match('/^[_[:lower:]]{1,12}$/', $order_by)); 
else 
    $order_by = 'a.id';
于 2012-09-09T05:59:28.987 回答
0

我不是 SQL 专家,但我认为

FROM mail a INNER JOIN mail_items b 

需要AS别名分配的关键字:

FROM mail AS a INNER JOIN mail_items AS b 
于 2012-09-09T06:02:09.437 回答