douhuangzhi0707 2016-05-02 08:28
浏览 149
已采纳

正确使用Not In子句

Here, the scenario is:

I have 4 tables

  1. Course
  2. Student
  3. Department
  4. EnrollCourse

While a student going to enroll a course a list of courses should be in dropdown from courses table. But course_id which are already in enroll_courses table shouldn't load in that courses dropdown. Because a student can't register single course 2 times. Here I'm using not in operation which will retrieve list of course_id which are not in enroll_courses table.

But I'm getting following error for the query:

You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'enroll_courses.course_id LIMIT 0, 25' at line 6

Here is query:

SELECT students.name, students.email,departments.name as d_name,
        courses.name as c_name
        FROM students JOIN departments on students.department_id=departments.id 
        JOIN courses on departments.id = courses.department_id
        LEFT JOIN enroll_courses on enroll_courses.course_id=courses.id 
        WHERE courses.id NOT IN (enroll_courses.course_id) AND students.id=8

Anyone who can help me to find the solution?

  • 写回答

2条回答 默认 最新

  • dpdhnd3577 2016-05-02 11:05
    关注

    There are several ways to get the desired result, this is close to your original query:

    SELECT  students.name ,
            students.email ,
            departments.name AS d_name ,
            courses.name AS c_name
    FROM    students
    JOIN departments
      ON students.department_id = departments.id
    JOIN courses
      ON departments.id = courses.department_id
    WHERE students.id = 8   
    -- up to here it's all possible courses
    
    -- now remove already enrolled courses
      AND courses.id NOT IN  
       (
         SELECT course_id
         FROM enroll_courses
         WHERE student_id = 8
       )
    

    Or a Correlated version:

      AND courses.id NOT IN  
       (
         SELECT course_id
         FROM enroll_courses
         WHERE student_id = students.student_id
       )
    

    Or NOT EXISTS:

      AND NOT EXISTS 
       (
         SELECT *
         FROM enroll_courses
         WHERE student_id = students.student_id
           AND course_id = courses.course_id
       )
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 kafka 分区副本增加会导致消息丢失或者不可用吗?
  • ¥15 微信公众号自制会员卡没有收款渠道啊
  • ¥15 stable diffusion
  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条
  • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘
  • ¥15 perl MISA分析p3_in脚本出错
  • ¥15 k8s部署jupyterlab,jupyterlab保存不了文件
  • ¥15 ubuntu虚拟机打包apk错误