题解 | #查找除复旦大学的用户信息#
查找除复旦大学的用户信息
http://www.nowcoder.com/practice/c12a056497404d1ea782308a7b821f9c
SELECT `device_id`,`gender`,`age`,`university` from user_profile where not (university = "复旦大学")
在 SQL 中没有 != 符号,需要取反时,可以使用 not 运算符。
查找除复旦大学的用户信息
http://www.nowcoder.com/practice/c12a056497404d1ea782308a7b821f9c
SELECT `device_id`,`gender`,`age`,`university` from user_profile where not (university = "复旦大学")
在 SQL 中没有 != 符号,需要取反时,可以使用 not 运算符。
相关推荐