简单查询练习

Posted 天啊鲁

tags:

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

select*from fruit#查询此表所有内容

select ids,name from fruit#查询序列和名字这两列

select*from fruit where ids=k007 #查找k007信息

select*from fruit where price=2.4and source=烟台

select*from Car where name like 奥迪%

select*from car where name like 奥迪_%
 
select*from chinastates where areaname like __区%#%为只要数据里包含此字段就查出来,_为占一个位置

排序查询

select*from chinastates order by areacode desc

select*from fruit order by price,source

统计查询

 select count(*)from nation

select count(areacode)from chinastates

select max(price)from car;

select min(price)from car;
 
select avg (price)from car;
 
select sum(price)from car;

select max(price),min(price),avg(price) from car #如果要一起查的话只有这样

分组查询

select code,brand,count(*)from car group by brand

select  price,count(*), max(price) from fruit group by price 

分页查询 

select *from car limit 3,5 #跳过几条数据取几条

 

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

#.NET 简单博文案例练习EF,熟练查询

简单查询练习

spring练习,在Eclipse搭建的Spring开发环境中,使用set注入方式,实现对象的依赖关系,通过ClassPathXmlApplicationContext实体类获取Bean对象(代码片段

片段着色器中未使用纹理数据 - OpenGL

Python练习册 第 0013 题: 用 Python 写一个爬图片的程序,爬 这个链接里的日本妹子图片 :-),(http://tieba.baidu.com/p/2166231880)(代码片段

php课程---简单的分页练习