Mysql基本语句
2021/12/17 2:10:28
本文主要是介绍Mysql基本语句,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
新建库
create database 库名 default charset utf8 collate utf8_general_ci;
删除库
drop database 库名;
新建表
create table 表名(
字段名 类型(长度) primary key(主见) comment '注释',
字段名 类型(长度) comment '注释',
字段名 类型(长度) comment '注释'
);
清空表
truncate table 表名;
删除表
drop table 表名
插入数据(增加数据)
insert into 表名 (字段1,字段2) value (数值1,数值2),(数值1,数值2)
insert into students
(id,name,age,sex)
value
(2,'张三',18,'男');
删除数据
delete from 表名 where 限定条件;
更新数据
update 表名 set 字段名=数值 where 限定条件;
查询全部
select * from 表名;
查询限定数据
select 字段名 from 表名 where 限制条件
模糊查询
like '%字符%' ,%代表多位
select *from 表名 where name like '%马%'
between and 语句
select *from students where age between 20 and 30;
最小值
select min(age) mins(起别名) from 表名;
最大值
select max(age) maxs from 表名;
平均值
select avg(age) from 表名;
计算个数
select count(age) from 表名;
select count(1) from 表名;
去重
select distinct 字段名 from 表名;
排序(asc:从小到大 desc:从大到小)
select *from 表名 order by 字段名;
select 字段名 from 表名 order by 字段名;
分组
select *from 表名 group by 字段名;
select 字段名1 from 表名 group by 字段名1;
去重后记录每组个数
select 字段名1, count(1) from 表名 group by 字段名1;
select age, count(1) from 表名 group by age;
去重后统计其他字段平均值、(最大值、求和)
select 字段名1,avg(字段名2) from 表名 group by 字段名1;
select age,avg(salary) from 表名 group by age;
男女中年龄最大值
select sex,max(age) from 表名 group by sex;
男女中人数
select sex,count(age) from 表名 group by sex;
这篇关于Mysql基本语句的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-02MySQL 3主集群搭建
- 2024-12-25如何部署MySQL集群资料:新手入门教程
- 2024-12-24MySQL集群部署资料:新手入门教程
- 2024-12-24MySQL集群资料详解:新手入门教程
- 2024-12-24MySQL集群部署入门教程
- 2024-12-24部署MySQL集群学习:新手入门教程
- 2024-12-24部署MySQL集群入门:一步一步搭建指南
- 2024-12-07MySQL读写分离入门:轻松掌握数据库读写分离技术
- 2024-12-07MySQL读写分离入门教程
- 2024-12-07MySQL分库分表入门详解