基本查询语句
查询常量
起别名
去重 distinct关键字
department_id,salary都相同时才会去重:
字段合并
拓展
- CONCAT_WS(separator(分离器),str1,str2,…)
- IFNULL(expr1,expr2)(如果expr1为null,则设置为expr2值)
- ISNULL(expr) 如果expr是null则返回1,否则返回0
条件查询
建议使用<>、and、or、not 都是MySQL自己的
模糊查询
like(字符、数值都可以判断)
between and
检索包含两个临界值;
应该保持左小右大。
in(也有not in)
is null
判空必须使用 is
安全等于
排序查询
DESC降序:descent(descending order)
ASC升序:ascent(ascending order)(默认)
order by 语句一般放在查询语句最后,除limit语句