博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
简单查询练习
阅读量:6426 次
发布时间:2019-06-23

本文共 843 字,大约阅读时间需要 2 分钟。

select*from fruit#查询此表所有内容select ids,name from fruit#查询序列和名字这两列select*from fruit where ids='k007' #查找k007信息select*from fruit where price='2.4'and 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 descselect*from fruit order by price,source统计查询 select count(*)from nationselect count(areacode)from chinastatesselect 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 brandselect  price,count(*), max(price) from fruit group by price 分页查询 select *from car limit 3,5 #跳过几条数据取几条

 

转载于:https://www.cnblogs.com/crazy-zw/p/5272395.html

你可能感兴趣的文章
MySQL_PHP学习笔记_2015.04.19_PHP连接数据库
查看>>
关于RFC
查看>>
juery 选择器 选择多个元素
查看>>
【新手向】TensorFlow 安装教程:RK3399上运行谷歌人工智能
查看>>
Oracle Net Configuration(监听程序和网络服务配置)
查看>>
c语言_判断例子
查看>>
ubuntu重启不清除 /tmp 设置
查看>>
面向对象
查看>>
JSON
查看>>
SAP发布wbservice,如果有权限管控的话,需要给这个webservice加权限
查看>>
16.Python网络爬虫之Scrapy框架(CrawlSpider)
查看>>
stm 常用头文件
查看>>
mac 删除文件夹里所有的.svn文件
查看>>
程序制作 代写程序 软件定制 代写Assignment 网络IT支持服务
查看>>
mysql 案例~select引起的性能问题
查看>>
直接读取图层
查看>>
springsecurity 源码解读 之 RememberMeAuthenticationFilter
查看>>
HTML5标准学习 - 编码
查看>>
JS 时间戳转星期几 AND js时间戳判断时间几天前
查看>>
UVa11426 最大公约数之和(正版)
查看>>