查找除复旦大学的用户信息_牛客题霸_牛客网
3种方法
1. <>
select device_id,gender,age,university
from user_profile
where university <> '复旦大学';
2. !=(其实是<>不等于的另外一种写法)
select device_id,gender,age,university
from user_profile
where university!='复旦大学';
3. not in
select device_id,gender,age,university
from user_profile
where university not in '复旦大学';
SQL语句中的not in用法是一种常见的条件查询方式,它可以用于在查询结果中排除某些特定的值。not in语句通常与in语句相对应,in语句用于查询某些特定的值,而not in语句则用于查询除了这些特定值以外的所有值。
如查询不在某个列表中的值:
select *
from table_name
where column_name not in (value1,value2,value3);
注意not in后面的内容要带括号
更多not in的详细的用法见下面链接内容,建议好好看看,学习这些基础知识。
sql语句not in用法