sql常见知识点
1.去重 distinct, 例如
SELECT DISTINCT university from user_profile ;
2.limit用于限制查询结果返回的数量
select device_id from user_profile LIMIT i,m;
i : 为查询结果的索引值(默认从0开始);
n : 为查询结果返回的数量
3.不等于表示
sql中有两种方式表示不等于,一种是"<>"(不含引号),另一种是"!="(不含引号),用法是一样的。
那就是where a <> 100; 或者where a != 100;
4.in
select device_id,gender,age,university,gpa from user_profile where
university in (“北京大学”,“复旦大学”,“山东大学”);
5.模糊查询