试图自己修复现有代码的错误,而不是我自己。使用此代码的错误是,除非相应的 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);