CRUD操作-select

CRUD操作-select 基本查询(一)

-- CRUD操作
-- insert into
-- insert
-- replace intouse dbok;
show tables;
drop table if exists t5,t6,t_stu,t_student,t_teacher;-- 建立学生表
create table t_student(sid int unsigned auto_increment,sname varchar(50) not null,sage tinyint unsigned default 18,score int unsigned default 0,sbirth date,primary key (sid)
)select * from t_student;
insert t_student value(null,'李四',20,90,'1995-06-16');
insert into t_student set sname='李强',sbirth='2002-3-13';insert t_student(sbirth,sname) values('2001-10-12','王五'),('2001-10-12','王五'),('2001-10-12','王五');insert t_student(sname,sbirth)  select sname,sbirth from t_student;select count(*) from t_studentcreate table db1.t_student like t_student;
insert into db1.t_student select * from t_student;select count(*) from db1.t_student;create table a(`year` year,`month` tinyint,money int unsigned,primary key(`year`,`month`)
);insert into a value(2021,1,1000),(2021,2,1200),(2022,1,1300),(2022,2,1500);select * from a;select database();show tables;select max(sid) from t_student;delete from t_student where sid>1000;select count(*) from t_student;-- 清空表数据
delete from t_student;-- 清空表数据,保留表结构
truncate t_student;
-- 表(结构 + 数据)-- 查看
select * from t_student;update t_student set score = score + 5;update t_student set score= 85 ,sbirth='1996-3-3' ,sname='李四四' where sid = 7;-- select 查询
select * from t_student;
select sid,sname,sage,score,sbirth from t_student;select sname 姓名,sbirth as '成绩' from t_student;select sname,sid from t_student;select sid,sname,score+5 from t_student;select @@version,@@port,@@hostname,@@basedir,@@datadir,user(),database(),now();select host,user,authentication_string,plugin from mysql.user;select uuid(),uuid_short(),rand();
select uuid(),uuid_short(),rand() from dual;select year(curdate()),curdate(),curtime(),current_date;-- 查询条件
-- = > < >= <= !=  and &&   or ||  not !
select * from t_student where sid = 3 && sname like '李%';select * from t_student where sname != '李四';
select * from t_student where sname <> '李四';
select * from t_student where not sname = '李四';-- 查看  and or not
select * from t_student where not !false;-- 查询条件 is null 或 is not null
select * from t_student where sage = null;
select * from t_student where sage is null;
select * from t_student where sage is not null;
select * from t_student where not sage is null;-- 模糊查找条件 like % _
select *  from t_student where sname like '___';
select *  from t_student where sname like '%李%';
select *  from t_student where sname like '李__';select *  from t_student where sname = '%李%';-- 正则表达式
select '李四' regexp '[a-zA-Z]+';select * from t_student where sname regexp '^.*[a-zA-Z]+$';select * from t_student where sname regexp '[\\u4e00-\\u9fa5]{2}';

CRUD操作-select 集合函数 分组 分组条件 分组统计group by 查询结构排序order by(二)

-- 查询条件 between and   sage>=15 and sage <=19 此条件用于数字 和 日期
select * from t_student where sage between 15 and 19;-- <15 or >19
select * from t_student where sage not between 15 and 19;-- in   not in
select * from t_student where sid in (1,3,5,11,19);
select * from t_student where sid not in (1,3,5,11,19);-- 查询年龄最大的数字是
select max(sage) from t_student;select * from t_student where sage = max(sage);-- 子查询
select * from t_student where sage = (select max(sage) from t_student);-- 有多少人,平均年龄,最大 最小 总和
select count(*) 总人数,avg(sage) 平均年龄,max(sage) 最大年龄,min(sage) 最小年龄,sum(sage) 年龄总和
from t_student;alter table t_student add gender enum('男','女') default '男' after sname;
alter table t_student add sdept varchar(255) default '计算机科学';select count(*) from t_student st where st.gender = '男';
select count(*) from t_student st where st.gender = '女';
select count(*) from t_student st where st.gender is null;select rand();-- ifnull(null,1) ifnull(1,2)
select ifnull(null,1),ifnull(1,2),if(true,'yes','no'),if(rand()>.5,'yes','no');select sid 学号,sname 姓名,ifnull(gender,'') 性别 from t_student;-- 查询分组 根据gender分组  查询统计 男生多少人 女生多少人 保密多少人
select ifnull(gender,'保密') 性别,count(*) 人数,max(score) 最高分,min(score) 最低分
from t_student group by gender;select distinct sdept from t_student;select t_student.sdept 专业 ,count(*) 人数 from t_student group by sdept-- 统计优秀score>90多少人  良好score>80多少人  及格score>=60多少人 补考(score<60)多少
select slevel 级别,count(*) 人数 from (
select sid,sname,score,if(score>=90,'优秀',if(score>=80,'良好',if(score>=60,'及格','补考'))) slevel
from t_student where sdept='计算机科学') as st group by slevel having count(*)>2 order by count(*) desc;-- 排序 order by asc 不写默认升序 desc 降序
select sid,sname,score from t_student order by score desc,sname asc-- 随机查询两条记录
select t.*,rand() from t_student t order by rand() limit 2;
select * from t_student t order by rand() limit 5;select pi();

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/31936.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

AWS认证SAA-C03每日一题

本题库由云计算狂魔微信公众号分享。 【SAA-C03助理级解决方案架构师认证】A company has a multi-tier application that runs six front-end web servers in an Amazon EC2 Auto Scaling group in a single Availability Zone behind an Application Load Balancer(ALB).A …

python 转换带时区的时间字符串为统一时区的时间

python 转换带时区的时间字符串为统一时区的时间 比如我们将gitlab上面commit的提交时间统一转换成北京时间 及0800 东八区时间 gitlab接口获取的commit信息中&#xff1a; “committed_date”: “2023-07-27T19:32:41.000-07:00” 美国时间 “committed_date”: “2023-07-2…

多维时序 | MATLAB实现ZOA-CNN-BiGRU-Attention多变量时间序列预测

多维时序 | MATLAB实现ZOA-CNN-BiGRU-Attention多变量时间序列预测 目录 多维时序 | MATLAB实现ZOA-CNN-BiGRU-Attention多变量时间序列预测预测效果基本介绍模型描述程序设计参考资料 预测效果 基本介绍 1.Matlab基于ZOA-CNN-BiGRU-Attention斑马优化卷积双向门控循环单元网络…

【云原生】Kubernetes控制器中DaemonSet与Job的使用

目录 DaemonSet 1 什么是 DaemonSet 2 使用 DaemonSet Job 1 什么是 Job 2 使用 Job 3 自动清理完成的 Job 控制器无法解决问题 DaemonSet 1 什么是 DaemonSet DaemonSet | Kubernetes DaemonSet 确保全部&#xff08;或者某些&#xff09;节点上运行一个 Pod 的副本…

eeglab(自用)

目录 1.加载、显示数据 2.绘制脑电头皮图 3.绘制通道光谱图 4.预处理工具 5.ICA去除伪迹 5. 提取数据epoch 1.加载、显示数据 观察事件值(Event values)&#xff1a;该数据集中包含2400个事件&#xff0c;每个事件指定了EEG.event结构的字段Type(类型)、position(位置)和…

检测新突破 | AlignDet:支持各类检测器自监督新框架(ICCV2023)

引言 论文链接&#xff1a;https://arxiv.org/abs/2307.11077 项目地址&#xff1a;https://github.com/liming-ai/AlignDet 这篇论文主要研究目标检测领域的自监督预训练方法。作者首先指出&#xff0c;当前主流的预训练-微调框架在预训练和微调阶段存在数据、模型和任务上的…

【技巧】如何设置Word文档部分内容“限制编辑”?

我们知道&#xff0c;Word文档可以设置“限制编辑”&#xff0c;也就是保护文档不被随意更改。 那如果只想保护文档中的部分内容&#xff0c;其他内容还是随意编辑更改&#xff0c;是否可以设置部分内容“限制编辑”&#xff1f;答案是可以的&#xff0c;下面小编来举例说明一…

uniapp 格式化时间刚刚,几分钟前,几小时前,几天前…

效果如图&#xff1a; 根目录下新建utils文件夹&#xff0c;文件夹下新增js文件&#xff0c;文件内容&#xff1a; export const filters {dateTimeSub(data) {if (data undefined) {return;}// 传进来的data必须是日期格式&#xff0c;不能是时间戳//将字符串转换成时间格式…

msvcp120.dll丢失的解决方法,Win11系统报错处理方法

在使用Windows11系统的时候&#xff0c;出现报错msvcp120.dll丢失我们需要怎么去修复它呢&#xff1f;msvcp120.dll是Windows操作系统中的一个重要的动态链接库文件&#xff0c;它包含了许多用于C程序的函数和类。然而&#xff0c;有时候我们可能会遇到msvcp120.dll丢失或损坏的…

UI美工设计的主要职责(合集)

UI美工设计的主要职责1 职责&#xff1a; 1、执行公司的规章制度及专业管理办法; 2、 负责重点项目的原型设计和产品流程设计、视觉设计&#xff0c;优化网站和移动端的设计流程和规范&#xff0c;制定产品 UI/UE规范及文档编写; 3、负责使用PS、AI、illustrator、MarkMan、…

matplotlib FormatStrFormatter设置坐标轴的标注为整数和小数【设置小数点的数目】

利用FormatStrFormatter 进行设置 1 设置为整数 import matplotlib.pyplot as plt from matplotlib.ticker import FormatStrFormatter# 创建一个图表 fig, ax plt.subplots()# 生成一些示例数据 x [1, 2, 3, 4, 5] y [1000, 2000, 3000, 4000, 5000]# 在 x 轴上设置刻度标…

【前端】CSS水平居中的6种方法

左右两边间隔相等的居中 文章目录 flex绝对定位margin:auto绝对定位margin:负值定位transformtext-align: center;margin: 0 auto;思维导图 flex display: flex;justify-content: center; <div classparent><div class"son"></div> </div>…

uni-app:实现点击按钮,进行数据累加展示(解决数据过多,导致出错)

效果 代码 核心代码 一、标签显示 <!-- 加载更多 --> <view class"load_more" v-if"info.length > pageNum * pageSize" tap"loadMore">加载更多 </view> v-if"info.length > pageNum * pageSize"&#xf…

辽宁线上3D三维虚拟工厂生产仿真系统应用场景及优势

工厂虚拟仿真是一种基于计算机技术和虚拟现实技术的数字化解决方案&#xff0c;它可以通过模拟工厂中的设备、流程和操作&#xff0c;来为工程师和操作人员提供了一个沉浸式的虚拟环境&#xff0c;帮助他们更好地了解和优化工厂生产过程。 工厂VR三维可视化技术为工业生产提供了…

Firefox 配置 Burp_proxy 和 证书

安装代理拓展 安装拓展&#xff1a; chrome &#xff1a; switchomega firefox &#xff1a; foxyproxy 创建代理 &#xff1a; 127.0.0.1:8080 安装burp证书 先开启burp&#xff0c;然后切换到 burp 的代理访问 https://burp/ 下载证书打开firefox设置 - 搜索”证书“ -…

ruby send call 的简单使用

refer: ruby on rails - What does .call do? - Stack Overflow Ruby使用call 可以调用方法或者proc m 12.method("") # > method gets the method defined in the Fixnum instance # m.class # > Methodm.call(3) #> 15 # 3 is passed inside the…

算法备案后,企业需要做什么?合规与执行挑战

随着技术的迅猛发展&#xff0c;算法已经成为多数企业核心竞争力的一部分。但在技术进步的同时&#xff0c;我们也面临了算法透明度、公平性以及安全性的问题。因此&#xff0c;许多国家已经开始实施算法备案制度&#xff0c;以确保算法的应用满足一定的标准和规范。但在完成算…

将静态库封装成python模块

很多硬件厂商的底层设备驱动都是以库的形式提供给开发者&#xff0c;有的是动态库&#xff0c;有的是静态库。开发上层应用&#xff0c;最快速便捷的方式当然还是用python&#xff0c;对于动态库&#xff0c;可以用python的ctypes库进行加载&#xff0c;而对于静态库&#xff0…

LeetCode150道面试经典题--验证回文串(简单)

1.题目 如果在将所有大写字符转换为小写字符、并移除所有非字母数字字符之后&#xff0c;短语正着读和反着读都一样。则可以认为该短语是一个 回文串 。 字母和数字都属于字母数字字符。 给你一个字符串 s&#xff0c;如果它是 回文串 &#xff0c;返回 true &#xff1b;否…

uniapp 微信小程序 封装公共的请求js(api版本)

一、新建api文件夹 在项目目录下创建api文件夹&#xff0c;内放files跟index.js文件夹&#xff0c;files文件夹内放每个页面对应的js请求接口 1、index.js /*** api接口的统一出口*/ const api {}; const requireComponent require.context(./files, false, /\.js$/) requi…