mysql左连接问题

发布于 2025-01-07 00:10:53 字数 545 浏览 2 评论 0原文

您好,我有 2 个表格,如下所示,

在此处输入图像描述

我想要的是获取类别和部分标题对于类别,mySQL 看起来像这样,

SELECT `categories`.`category_id`, 
       `categories`.`category_title`, 
       `categories`.`category_created`, 
       `section`.`section_id`, 
       `section`.`section_title`, 
       `categories`.`parent_section` 
 FROM (`categories`) 
 LEFT JOIN `section` 
 ON `section`.`section_id` = `categories`.`category_id`

但是我返回的是类别和部分的列表,而不是类别及其部分的列表。我做错了什么吗?

Hello I have 2 tables that look like this,

enter image description here

What I wanting to is get the category and the section title of the category, mySQL looks like this,

SELECT `categories`.`category_id`, 
       `categories`.`category_title`, 
       `categories`.`category_created`, 
       `section`.`section_id`, 
       `section`.`section_title`, 
       `categories`.`parent_section` 
 FROM (`categories`) 
 LEFT JOIN `section` 
 ON `section`.`section_id` = `categories`.`category_id`

However all I am getting back is a list of the categories and the sections, not a list of the categories and their parent section. Have I done something wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

撞了怀 2025-01-14 00:10:53

如果您想要父部分,那么您的连接条件应该位于该列上:

SELECT `categories`.`category_id`, 
       `categories`.`category_title`, 
       `categories`.`category_created`, 
       `section`.`section_id`, 
       `section`.`section_title`, 
       `categories`.`parent_section` 
 FROM (`categories`) 
 LEFT JOIN `section` 
 ON `section`.`section_id` = `categories`.`parent_section`

If you want the parent section, then your join condition should be on that column:

SELECT `categories`.`category_id`, 
       `categories`.`category_title`, 
       `categories`.`category_created`, 
       `section`.`section_id`, 
       `section`.`section_title`, 
       `categories`.`parent_section` 
 FROM (`categories`) 
 LEFT JOIN `section` 
 ON `section`.`section_id` = `categories`.`parent_section`
谜泪 2025-01-14 00:10:53

我认为应该是:

SELECT `categories`.`category_id`, 
       `categories`.`category_title`, 
       `categories`.`category_created`, 
       `section`.`section_id`, 
       `section`.`section_title`, 
       `categories`.`parent_section` 
 FROM (`categories`) 
 LEFT JOIN `section` 
 ON `section`.`section_id` = `categories`.`parent_section`

I think it should be:

SELECT `categories`.`category_id`, 
       `categories`.`category_title`, 
       `categories`.`category_created`, 
       `section`.`section_id`, 
       `section`.`section_title`, 
       `categories`.`parent_section` 
 FROM (`categories`) 
 LEFT JOIN `section` 
 ON `section`.`section_id` = `categories`.`parent_section`
挖鼻大婶 2025-01-14 00:10:53
... 
LEFT JOIN section S ON S.section_id = categories.parent_section;
... 
LEFT JOIN section S ON S.section_id = categories.parent_section;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文