gpt4 book ai didi

php - FOREACH sql 表条目从另一个表获取结果

转载 作者:行者123 更新时间:2023-11-30 22:04:00 25 4
gpt4 key购买 nike

我正在使用 vBulletin 论坛,如果它存在于另一个表中,我会尝试从一个表中获取结果。

这是数据来源表的创建

$db->query("ALTER TABLE " . TABLE_PREFIX . "drc_settings ADD thread_ids varchar(50) NOT NULL default '0'");

我创建了一个用于逗号分隔数字(线程 ID)的输入字段。提交到此列,因此此列中的结果如下所示:

1,46,23

此表中的另一列是 threadid,这是提交帖子的线程。

这就是我们在 drc_settings 表中的内容

threadid  thread_ids
5 1,46,23

现在存在的另一个表是线程,在线程表中我们有:

threadid  title
46 Some Title

我需要知道的是,如果 thread_ids 或 drc_settings 与线程的 threadid 匹配,我如何从线程中获取标题?

这就是我的想法,但我对这件事有点不适应。

$res = $post['thread_ids'];
$res = explode (',', $res);
$post['drcid'] = '<ul>';

foreach ( $res as $ret ) {
$db->query("
SELECT
thread.threadid, drc.threadid AS threadid,
thread.threadid, thread.title AS threadtitle
FROM " . TABLE_PREFIX . "thread AS thread
LEFT JOIN " . TABLE_PREFIX . "drc_settings AS drc ON (drc.threadid=thread.threadid)
WHERE thread.threadid VAR (" . $ret . ")
");
$post['drcid'] .= '<li><a href="showthread.php?t=' . $ret . '">'. $thread[threadtitle] .'</a></li>';
}
$post['drcid'] .= '</ul>';

如果我从 foreach 中删除查询,我就能让 $res 返回 1 46 23这让我很困惑,为什么查询不能正常工作。

最终结果将是输入中指定的每个线程的链接列表,即:

  • 一些标题
  • 另一个话题
  • 话题标题

这是我当前设置返回的错误

Database error in vBulletin 3.8.9:

Invalid SQL:

SELECT
thread.threadid, drc.threadid AS threadid,
thread.threadid, thread.title AS threadtitle
FROM thread AS thread
LEFT JOIN drc_settings AS drc ON (drc.threadid=thread.threadid)
WHERE thread.threadid VAR (1);

MySQL Error : You have an error in your SQL syntax;

最佳答案

使用 $ret(父 threadid)...

$query="SELECT B.threadid,B.title 
FROM drc.settings A
LEFT JOIN thread B
ON FIND_IN_SET(B.threadid,A.threadids)
WHERE A.threadid={$ret};"

然后根据需要循环遍历结果集以构建 $post 数组。

关于php - FOREACH sql 表条目从另一个表获取结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42356981/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com