数据库查询

Posted damocless

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数据库查询相关的知识,希望对你有一定的参考价值。

6、查询所有数据

select * from Info 查所有数据

select Code,Name from Info 查特定列

 

7、根据条件查

select * from Info where Code=‘p001‘ 一个条件查询 

select * from Info where Code=‘p001‘ and Natio n=‘n001‘ 多条件 并关系 查询

select * from Info where Name=‘胡军‘ or Nation=‘n001‘ 多条件 或关系 查询

select * from Car where Price>=50 and Price<=60 范围查询

select * from Car where Price between 50 and 60 范围查询

 

8、模糊查询

select * from Car where Name like ‘%型‘ %通配符代表任意多个字符

select * from Car where Name like ‘%奥迪%‘

select * from Car where Name like ‘_马%‘ _通配符代表任意一个字符

 

9、排序

select * from Car order by Price asc 按照价格升序排列

select * from Car order by Price desc 按照价格降序排列

select * from Car order by Price,Oil 按照两列进行排序,前面的为主要的

 

10、统计函数(聚合函数)

select count(Code) from Car 查询表中有多少条数据

select max(Price) from Car 取价格的最大值

select min(Price) from Car 取价格的最小值

select sum(Price) from Car 取价格的总和

select avg(Price) from Car 取价格的平均值

以上是关于数据库查询的主要内容,如果未能解决你的问题,请参考以下文章

数据库中的统计查询和组合查询

数据库-ElasticSearch入门(索引文档查询)

数据库-ElasticSearch入门(索引文档查询)

java查询数据库按年月日

mysql-数据库查询语句汇总

数据库相关嵌套子查询