当前位置: 首页 > news >正文

淘宝联盟网站建设学习网站建设建议调查问卷

淘宝联盟网站建设,学习网站建设建议调查问卷,怀来网站建设,it公司做网站用什么软件#x1f341;博主简介 #x1f3c5;云计算领域优质创作者   #x1f3c5;华为云开发者社区专家博主   #x1f3c5;阿里云开发者社区专家博主 #x1f48a;交流社区#xff1a;运维交流社区 欢迎大家的加入#xff01; 相关文章 文章名文章地址【MYSQL初级篇】入门… 博主简介   云计算领域优质创作者   华为云开发者社区专家博主   阿里云开发者社区专家博主 交流社区运维交流社区 欢迎大家的加入 相关文章 文章名文章地址【MYSQL初级篇】入门学习【增删改查-库表数据】https://liucy.blog.csdn.net/article/details/128396592【MYSQL中级篇】数据库数据查询学习https://liucy.blog.csdn.net/article/details/128717294MYSQL中级篇学习目录相关文章前言排序查询分组查询去重查询聚合函数比较运算符查询逻辑运算符查询模糊查询范围查询空判断查询多表联查两表联查内连接两表联查左连接两表联查右连接全连接: union或union all前言 没有安装mysql的大家可参考【 Centos7安装Mysql5.7超详细版】、【【云原生】Docker之创建并进入mysql容器】 两种方式任选其一来安装 SQL语句 DDL 数据定义语言 create drop alterDML 数据操纵语言 update delete insertDQL 数据查询语言 selectDCL 数据控制语言 grant revoke 排序查询 desc 降序asc 升序limit 1 取第一行 mysql order by排序默认为升序从小到大 #排序默认为升序 select * from 表名 order by id;根据id排序#取行数 select * from 表名 limit 偏移量,行数;#根据score排序默认为升序 select * from student order by score;#根据id排序升序从小到大 select * from student order by id asc;#根据score排序降序从大到小 select * from student order by score desc;#偏移量为2取5行取第3行到第7行 select * from student limit 2,5;分组查询 select * from 表名 group by 字段;#按分数打包分组(打包相同的分数) select * from student group by score;如遇到以下报错可了解 https://blog.csdn.net/weixin_44013783/article/details/119422353、https://blog.csdn.net/W_317/article/details/116723943 去重查询 select distinct 字段 from 表名;#去除相同的分数 select distinct score from student; select distinct score as 分数 from student;聚合函数 max()  最大值 select max(字段) from 表名;#查找最高的分数显示姓名和分数 select name as 姓名,max(score) as 分数 from student;----------- | 姓名 | 分数 | ----------- | 老六 | 125 | -----------min()  最小值 select min(字段) from 表名;#查找最底的分数显示姓名、性别、年龄、分数 select name as 姓名,sex as 性别,age as 年龄,min(score) as 分数 from student;--------------------- | 姓名 | 性别 | 年龄 | 分数 | --------------------- | 王五 | 男 | 15 | 100 | ---------------------sum()  和 select sum(字段) from 表名;#查询班级的总分 select sum(score) as 班级总分 from student;--------- | 班级总分 | --------- | 1546 | ---------count()  统计 select count(字段) from 表名;#统计班级有多少个人 select count(*) as 班级总人数 from student;---------- | 班级总人数 | ---------- | 13 | ----------avg()  平均数 select avg(字段) from 表名;#计算班级总分的平均分 select avg(score) as 班级平均分 from student;---------- | 班级平均分 | ---------- | 118.9231 | ----------综合 #统计班级的总人数、总分及平均分 select count(*) as 班级总人数,sum(score) as 班级总分,avg(score) as 班级平均分 from student;----------------------------- | 班级总人数 | 班级总分 | 班级平均分 | ----------------------------- | 13 | 1546 | 118.9231 | -----------------------------with rollup  对聚合结果进行汇总 使用 with rollup此函数是对聚合函数进行求和注意 with rollup是对 group by 后的第一个字段进行分组求和。 #按分数分组并计算出各组人数、总分、平均分在做全部统计 select count(*),sum(score),avg(score) from student group by score with rollup; select count(*) as 各组人数,sum(score) as 各组总分,avg(score) as 各组平均分 from student group by score with rollup;---------------------------- | 各组人数 | 各组总分 | 各组平均分 | ---------------------------- | 2 | 246 | 123.0000 | | 3 | 360 | 120.0000 | | 2 | 242 | 121.0000 | | 2 | 200 | 100.0000 | | 2 | 248 | 124.0000 | | 2 | 250 | 125.0000 | | 13 | 1546 | 118.9231 | ----------------------------having    对于聚合后的结果进行过滤如果逻辑允许多用where #查询分数小于120的人 select * from student having score120;where   用于聚合前having用于聚合后。 #查询性别为女的人 select * from student where sex女;比较运算符查询 等于: #查询性别是男的学生 select * from student where sex男;大于: #查询年龄大于15的学生 select * from student where age15;大于等于: #查询年龄大于等于15的学生 select * from student where age15;小于: #查询分数小于122的学生 select * from student where score122;小于等于: #查询分数小于等于122的学生 select * from student where score122;不等于: ! 或 #查询学生性别不是男生的 select * from student where sex!男;#查询学生性别不是女生的 select * from student where sex女;逻辑运算符查询 and 和要同时符合这两个条件或多个条件 #查询学生分数高于122的男同学 select * from student where score122 and sex男;or 或满足其中一个条件即可两者都有则都输出 #查询年龄大于18或小于20的学生 select * from student where age18 or age20;not 不不要指定条件的数据 #查询分数不在120到123的学生 select * from student where not (score120 and score123);多个条件判断想要作为一个整体的时候可以使用()。 模糊查询 新增3条模糊查询要用到的数据 insert into student values (null,张九,男,15,7.12,北京市朝阳区某小区1号楼1单元103,zhangjiu163.com,16839217282,122); insert into student values (null,张时嘉,女,17,12.12,北京市朝阳区某小区1号楼1单元102,zhangsj163.com,13307189235,124.5),(null,张时依,女,17,12.12,北京市朝阳区某小区1号楼1单元102,zhangsy163.com,13307189236,125);like是模糊查询关键字 %表示任意多个任意字符 _表示一个任意字符 例1查询姓张的学生都有谁 #查询姓张的学生都有谁 select name from student where name like 张%;例2查询姓张的两个字的学生都有谁 #查询姓张的两个字的学生都有谁 select * from student where name like 张_;例3查询三个字的学生都有谁 #查询三个字的学生都有谁 select * from student where name like ___;例4查询手机号以16开头的学生 #查询手机号以16开头的学生 select * from student where iphone like 16%;例5查询姓老的或是名字中带时的都有谁 #查询姓老的或是名字中带时的都有谁 select * from student where name like 老% or name like %时%;范围查询 between … and … 表示在一个连续的范围内查询in 表示在一个非连续的范围内查询 例1查询生日6月01日到9月31日的学生 #查询生日6月01日到9月31日的学生 select * from student where birthday between 6.01and9.31;例2查询地址为1单元103到109之间的男同学 #查询地址为1单元103到109之间的男同学 select * from student where (address between 北京市朝阳区某小区1号楼1单元103and北京市朝阳区某小区1号楼1单元109) and sex男;例3查询id为1和22的两个学生 #查询id为1和22的两个学生 select * from student where id in(1,22);IN 列表项不仅支持数字也支持字符甚至时间日期类型等并且可以将这些不同类型的数据项混合排列而无须跟 column 的类型保持一致 一个 IN 只能对一个字段进行范围比对如果要指定更多字段可以使用 AND 或 OR 逻辑运算符 使用 AND 或 OR 逻辑运算符后IN 还可以和其他如 LIKE、、 等运算符一起使用。 空判断查询 判断为空使用: is null判断非空使用: is not null #查询邮件是空的学生 select * from student where email is null;#查询邮件不是空的学生 select * from student where email is not null;不能使用 where height null 判断为空 不能使用 where height ! null 判断非空 null 不等于 空字符串 多表联查 新增一个表 create table body (id int(3) ZEROFILL PRIMARY KEY AUTO_INCREMENT commentid,name varchar(255) not null comment姓名,height varchar(255) comment身高,weight varchar(255) not null comment体重,heartbeat int comment心跳/每分钟)comment学生身体表;新增数据 insert into body values (null,张三,177.2,140.4,99),(null,李四,180,149.2,80),(null,王五,167.9,141,80),(null,老六,173,128,77),(null,小七,159.5,90.8,89),(null,老八,169.9,145.2,78),(null,张九,169,120.5,82),(null,张时嘉,168,83,79),(null,张时依,168.3,83.4,82);两表联查内连接 两表联查必须加上where 表1 id表2 id否则查询出来会有很多重复的数据你写了几个字段就会查询到多少字段的重复数据 内连接格式A inner join B on 条件 例子 select * from A inner join B on 条件 select * from A inner join B on 条件 where 条件 select * from A inner join B on 条件 where 条件 having 条件 select * from A inner join B on 条件 order by 字段 select * from A inner join B on 条件 where 条件 order by 字段 select * from A inner join B on 条件 where 条件 having 条件 order by 字段 例1查询student表姓名、性别、年龄body表身高、体重、心跳 #两表联查查询student表姓名、性别、年龄body表身高、体重、心跳 select student.name as 姓名,student.sex as 性别,student.age as 年龄,body.height as 身高,body.weight as 体重,body.heartbeat as 心跳/每分钟 from student,body where student.idbody.id;#别名两表联查查询student表姓名、性别、年龄body表身高、体重、心跳 select a.name as 姓名,a.sex as 性别,a.age as 年龄,b.height as 身高,b.weight as 体重,b.heartbeat as 心跳/每分钟 from student a,body b where a.idb.id;例2查询student表姓名、性别、年龄、分数body表身高、体重、心跳并只显示成绩大于等于122的学生 #别名两表联查查询student表姓名、性别、年龄、分数body表身高、体重、心跳并只显示成绩大于等于122的学生 select a.name as 姓名,a.sex as 性别,a.age as 年龄,b.height as 身高,b.weight as 体重,b.heartbeat as 心跳/每分钟,a.score as 分数 from student a,body b where a.idb.id having score122;例3查询student表姓名、性别、年龄、分数body表身高、体重、心跳并只显示成绩大于等于122的女学生 #别名两表联查内连接查询student表姓名、性别、年龄、分数body表身高、体重、心跳并只显示成绩大于等于122的女学生 select a.name as 姓名,a.sex as 性别,a.age as 年龄,b.height as 身高,b.weight as 体重,b.heartbeat as 心跳/每分钟,a.score as 分数 from student a inner join body b on a.idb.id where score122 having sex女;例4查询student表姓名、性别、年龄、分数body表身高、体重、心跳并只显示成绩大于等于122的女学生且从大到小排序 #别名两表联查内连接查询student表姓名、性别、年龄、分数body表身高、体重、心跳并只显示成绩大于等于122的女学生且从大到小排序 select a.name as 姓名,a.sex as 性别,a.age as 年龄,b.height as 身高,b.weight as 体重,b.heartbeat as 心跳/每分钟,a.score as 分数 from student a inner join body b on a.idb.id where score122 having sex女 order by score desc;两表联查左连接 两表联查必须加上where 表1 id表2 id否则查询出来会有很多重复的数据你写了几个字段就会查询到多少字段的重复数据 内连接格式A left join B on 条件 例子 select * from A left join B on 条件 select * from A left join B on 条件 where 条件 select * from A left join B on 条件 where 条件 having 条件 select * from A left join B on 条件 order by 字段 select * from A left join B on 条件 where 条件 order by 字段 select * from A left join B on 条件 where 条件 having 条件 order by 字段 例1查询student表姓名、性别、年龄body表身高 #别名两表联查左连接查询student表姓名、性别、年龄body表身高 select a.name as 姓名,a.sex as 性别,a.age as 年龄,b.height as 身高 from student a left join body b on a.idb.id;例2查询student表姓名、性别、年龄、分数body表身高、体重、心跳并只显示成绩大于等于122的学生 #别名两表联查左连接查询student表姓名、性别、年龄、分数body表身高、体重、心跳并只显示成绩大于等于122的学生 select a.name as 姓名,a.sex as 性别,a.age as 年龄,b.height as 身高,b.weight as 体重,b.heartbeat as 心跳/每分钟,a.score as 分数 from student a left join body b on a.idb.id where score122;例3查询student表姓名、性别、年龄、分数body表身高、体重、心跳并只显示成绩大于等于122的女学生 #别名两表联查左连接查询student表姓名、性别、年龄、分数body表身高、体重、心跳并只显示成绩大于等于122的女学生 select a.name as 姓名,a.sex as 性别,a.age as 年龄,b.height as 身高,b.weight as 体重,b.heartbeat as 心跳/每分钟,a.score as 分数 from student a left join body b on a.idb.id where score122 having sex女;例4查询student表姓名、性别、年龄、分数body表身高、体重、心跳并只显示成绩大于等于122的女学生且从大到小排序 #别名两表联查左连接查询student表姓名、性别、年龄、分数body表身高、体重、心跳并只显示成绩大于等于122的女学生且从大到小排序 select a.name as 姓名,a.sex as 性别,a.age as 年龄,b.height as 身高,b.weight as 体重,b.heartbeat as 心跳/每分钟,a.score as 分数 from student a left join body b on a.idb.id where score122 having sex女 order by score desc;两表联查右连接 两表联查必须加上where 表1 id表2 id否则查询出来会有很多重复的数据你写了几个字段就会查询到多少字段的重复数据 内连接格式A right join B on 条件 例子 select * from A right join B on 条件 select * from A right join B on 条件 where 条件 select * from A right join B on 条件 where 条件 having 条件 select * from A right join B on 条件 order by 字段 select * from A right join B on 条件 where 条件 order by 字段 select * from A right join B on 条件 where 条件 having 条件 order by 字段 例1查询student表姓名、性别、年龄body表身高 #别名两表联查右连接查询student表姓名、性别、年龄body表身高 select a.name as 姓名,a.sex as 性别,a.age as 年龄,b.height as 身高 from student a right join body b on a.idb.id;例2查询student表姓名、性别、年龄、分数body表身高、体重、心跳并只显示成绩大于等于122的学生 #别名两表联查右连接查询student表姓名、性别、年龄、分数body表身高、体重、心跳并只显示成绩大于等于122的学生 select a.name as 姓名,a.sex as 性别,a.age as 年龄,b.height as 身高,b.weight as 体重,b.heartbeat as 心跳/每分钟,a.score as 分数 from student a right join body b on a.idb.id where score122;例3查询student表姓名、性别、年龄、分数body表身高、体重、心跳并只显示成绩大于等于122的女学生 #别名两表联查右连接查询student表姓名、性别、年龄、分数body表身高、体重、心跳并只显示成绩大于等于122的女学生 select a.name as 姓名,a.sex as 性别,a.age as 年龄,b.height as 身高,b.weight as 体重,b.heartbeat as 心跳/每分钟,a.score as 分数 from student a right join body b on a.idb.id where score122 having sex女;例4查询student表姓名、性别、年龄、分数body表身高、体重、心跳并只显示成绩大于等于122的女学生且从大到小排序 #别名两表联查右连接查询student表姓名、性别、年龄、分数body表身高、体重、心跳并只显示成绩大于等于122的女学生且从大到小排序 select a.name as 姓名,a.sex as 性别,a.age as 年龄,b.height as 身高,b.weight as 体重,b.heartbeat as 心跳/每分钟,a.score as 分数 from student a right join body b on a.idb.id where score122 having sex女 order by score desc;全连接: union或union all 注意 1.两张表的数据数量必须相同 2.全连接内使用order by 没有效果可以对连接后的结果进行排序 3.union会合并相同的数据 select * from 表1 union all select * from 表2;select * from student1 union all select * from student2;
http://www.dnsts.com.cn/news/34391.html

相关文章:

  • 如何做淘宝优惠卷网站建设银行德阳分行网站
  • 门户网站需要多少空间网站开发计入什么科目
  • 做网站 证书 浏览器有文化底蕴的公众号名字
  • 购物网站的文化建设问题双语网站建设哪家便宜
  • 重庆荣昌网站建设公司企业数据哪里找
  • 诚信网站认证必需做吗一级造价工程师考试科目
  • php网站用什么软件外包网络推广营销
  • 四川省化工建设有限公司网站河南郑州汽车网网站建设
  • 网站与网站之间做的好坏对比广州网站建设骏域
  • 生态城门户网站 建设动态可以做设计兼职的网站有哪些工作
  • 纪检监察网站建设方案wordpress插件 知乎
  • 新市网站建设千牛网站上的店铺推广怎么做
  • 怎么样自己开网站wordpress缩略图生成
  • 潍坊网站建设外贸wordpress安装到虚拟主机
  • 有哪些网站是免费学做网页的织梦个人网站模版
  • wordpress搬站最新永久免费在线观看电视剧网址
  • 汕头免费做网站网站文章没有被收录吗
  • 网站建设过程中的系统结构图西安自助建站
  • 网站备案邮寄到哪里音乐网页设计素材
  • 济南城市建设集团 网站app软件制作公司哪家好
  • 门户站模板黄岩区住房保障建设局网站
  • 网站开发团队组成企业法人查询系统官网
  • 网站备案要拍照大家怎么做的啊php怎么做网站程序
  • 网站建设近义词工业设计作品集欣赏
  • 一页网站北京搜索引擎推广服务
  • 东城网站建设哪家好如何更新目录wordpress
  • 合肥做网站的价格如何做网页链接
  • 常州网站建设要多少钱网站正在建设中末班
  • 网站建设的技术准备如何seo搜索引擎优化
  • 做景观园林的网站是咸宁哪个企业没有做网站