【Linux】重生之从零开始学习运维之Mysql

Mysql基础指令

查看show

复制代码
mysql
复制代码
show databases;
复制代码
use db1;
show tables;

创建create

复制代码
show databases;
create database db2;
show databases;
复制代码
use db2;
show tables;
create table test1 like db1.stu1;
desc test1;

修改alter

增add

复制代码
alter table stu1 add phone varchar(11) after age;

删drop

复制代码
alter table stu1 drop column phone;

改名rename

复制代码
alter table stu1 rename stu;

修改字段名称和类型change

复制代码
alter table stu change phone mobile char(10);

增加主键-primary key

复制代码
alter table stu add primary key (id);

增加主键自增-auto_increment

复制代码
alter table stu modify column id int unsigned not null auto_increment;

自增起始值

复制代码
alter table stu auto_increment=1;

插入数据

复制代码
insert stu (name,age) values ('zhangsan',15);

移除drop

删除表

复制代码
drop table user3;

DML语句-insert、update、delete

插入数据

插入单行数据-insert

复制代码
insert stu (name,age) values('xiaoming',20);
复制代码
insert stu (name,age,is_del) values('xiaohong',18,false);

插入单行数据-insert into

复制代码
insert into stu values(12,'xiaoli',11111111112,19,null);

插入多行数据

insert into xxx values(,),(,)...;

复制代码
insert into stu (name,age) values('test1',20),('test2',21),('test3',22);

以更新的方式插入数据

insert into xxxx values() on duplicate key update xxx='xxx';

复制代码
insert into stu (id,name) values(12,'zhangsan') on duplicate key update name='zhangsan';

将查询结果当值插入

复制代码
insert into stu (name,age) select name,age from stu where id=11;

更新数据

根据条件更新数据-update

复制代码
update stu set age=26 where id>12;

多个条件or、and

复制代码
update stu set age=21 where (id=15 or name is null);
复制代码
update stu set age=22 where (id=16 and name='xiaohong');

删除数据

根据条件删除-delete

复制代码
delete from stu where id=16;

指定多条件删除

复制代码
delete from stu where (mobile is null and id=15);

清空表数据

清空表

复制代码
truncate table xxx
delete from xxx

DQL****语句

查询-select

普通查询

复制代码
select * from stu;

AS方式将标题改名

复制代码
select id as 学号,name as 姓名,age as 姓名 from stu;

多条件查询

复制代码
select id,name from stu where id>15;
复制代码
select id,name,age from stu where id in (10,14,15,17);

排序

指定排序order by

复制代码
select * from stu order by name;

去重distinct

复制代码
select distinct(age) from stu order by age desc;

Mysql视图基础

view视图

创建view视图

create view xxx as xxxxx;

复制代码
create view v_stu as select * from stu where age=18;

更新视图信息

复制代码
update v_stu set age=20 where id=16;

删除view视图

复制代码
drop view v_stu;
相关推荐
!!!!!!!!!!!!!!!!.5 分钟前
CTF WEB入门 命令执行篇71-124
笔记·学习·安全·ctf
小馒头学python5 分钟前
openEuler 向量数据库:Milvus 相似度搜索性能测试
数据库·milvus·openeuler
zhangrelay5 分钟前
Webots 2025a + ROS 2 Jazzy e-puck 机器人教程
笔记·学习·机器人
༺๑Tobias๑༻8 分钟前
国内可用的DOCKER 镜像源
运维·docker·容器
正在走向自律12 分钟前
Oracle迁移实战:从兼容性挑战到平滑过渡金仓数据库的解决方案
数据库·oracle·国产数据库·金仓数据库·兼容性挑战·迁移成本
The Chosen One98513 分钟前
【Linux】制作进度条小程序、git入门 (add、commit、push三板斧)以及git的其他问题
linux·运维·git
●VON15 分钟前
跨设备状态同步实战:基于 HarmonyOS 分布式数据管理(DDM)构建多端协同应用
分布式·学习·华为·harmonyos·openharmony·von
阿巴~阿巴~15 分钟前
HTTP服务器实现请求解析与响应构建:从基础架构到动态交互
服务器·网络·网络协议·http·交互·请求解析·响应构建
Crazy________19 分钟前
45Ansible Roles:标准化部署的终极利器
linux·运维·服务器
QAQalone20 分钟前
MySQL实际项目中常用的 DDL 模板
数据库·mysql