mysql查询
Posted 电脑技术学习杂记
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql查询相关的知识,希望对你有一定的参考价值。
基本查询
--查询所有字段
select * from 表名;
--查询指定字段
select 字段1 字段2 from 表名;
-- 可以使用as为列或表指定别名
-- select 字段[as 别名] , 字段[as 别名] from 数据表 where ....;
select name as 姓名,gender as 性别 from students;
--同理也可以给表起名字
select stu.name,stu.gender from students as stu;
--去重
select distinct name from student;
条件查询
--比较运算符
--大于
--查询年龄大于18岁的数据
select * from students where age > 18;
--小于
select * from students where age < 18;
--大于等于
select * from students where age >= 18;
--小于等于
select * from students where age <= 18;
--不等于
select * from student where age != 18;
以上是关于mysql查询的主要内容,如果未能解决你的问题,请参考以下文章