mysql中not in这是啥比较运算符?

2025-05-22 05:19:12
推荐回答(1个)
回答(1):

与in相反
例子

select * from student where class_name not in ('first');
得到所有class_name不是first的数据,即例子中班级不是一班的所有学生数据。