当前位置:网站首页>常用sql语句整理:mysql
常用sql语句整理:mysql
2022-07-07 09:07:00 【全栈程序员站长】
## 常用sql语句整理:mysql
1. 增
– 增加一张表 “` CREATE TABLE `table_name`( … )ENGINE=InnoDB DEFAULT CHARSET=utf8; “`
– 增加记录 “` INSERT INTO `your_table_name`(`column_name`) VALUES (‘your_value_one’), (‘your_value_two’); “`
– 增加字段 “` ALTER TABLE `your_table_name` ADD `your_column_name` … AFTER `column_name`; “`
– 增加索引 + 主键 “` ALTER TABLE `your_table_name` ADD PRIMARY KEY your_index_name(your_column_name); “` + 唯一索引 “` ALTER TABLE `your_table_name` ADD UNIQUE your_index_name(your_column_name); “` + 普通索引 “` ALTER TABLE `your_table_name` ADD INDEX your_index_name(your_column_name); “` + 全文索引 “` ALTER TABLE `your_table_name` ADD FULLTEXT your_index_name(your_column_name); “`
2. 删
– 逐行删除 “` DELETE FORM `table_name` WHERE …; “`
– 清空整张表 “` TRUNCATE TABLE `your_table_name`; “`
– 删除表 “` DROP TABLE `your_table_name`; “`
– 删除字段 “` ALTER TABLE `your_table_name` DROP `column_name`; “`
– 删除索引 “` ALTER TABLE `your_table_name` DROP INDEX your_index_name(your_column_name); “`
3. 改
– 变更数据 “` UPDATE `table_name` SET column_name=your_value WHERE …; “`
– 变更字段 “` ALTER TABLE `your_table_name` CHANGE `your_column_name` `your_column_name` …(变更); “`
– 变更字段值为另一张表的某个值 “` UPDATE `your_table_name` AS a JOIN `your_anther_table_name` AS b SET a.column = b.anther_column WHERE a.id = b.a_id…; “`
4. 查
– 普通查询 “` SELECT `column_name_one`, `column_name_two` FROM `table_name`; “`
– 关联查询 “` SELECT * FROM `your_table_name` AS a JOIN `your_anther_table_name` AS b WHERE a.column_name = b.column_name…; “`
– 合计函数条件查询:WHERE 关键字无法与合计函数一起使用 “` SELECT aggregate_function(column_name) FROM your_table_name GROUP BY column_name HAVING aggregate_function(column_name)…; “`
– 同一个实例下跨库查询 “` SELECT * FROM database_name.your_table_name AS a JOIN another_database_name.your_another_table_name AS b WHERE a.column_name = b.column_name…; “`
5. 复制一张表结构 “` CREATE TABLE `your_table_name` LIKE `destination_table_name`; “`
6. 完全复制一张表:表结构+全部数据 “` CREATE TABLE `your_table_name` LIKE `destination_table_name`;
INSERT INTO `your_table_name` SELECT * FROM `destination_table_name`; “`
—
### 附录:mysql常用命令 – 登陆: mysql -h host -u username -p – 列出数据库:SHOW DATABESES; – 列出表:SHOW TABLES; – 列出表结构:DESC table_name – 使用一个数据库:USE database_name; – 导入:source ‘file’; – 导出:mysqldump -h 127.0.0.1 -u root -p “database_name” “table_name” –where=”condition” > file_name.sql; – 查看慢日志:mysqldumpslow -s [c:按记录次数排序/t:时间/l:锁定时间/r:返回的记录数] -t [n:前n条数据] -g “正则” /path – 新增用户: insert into `user`(`Host`, `User`, `authentication_string`) value(‘localhost’, ‘username’, password(‘pwd’))
### mysql 5.7 新增用户
“` // 插入新用户 insert into mysql.user(Host, User, authentication_string, ssl_cipher, x509_issuer, x509_subject value(‘localhost’, ‘username’, password(‘password’), ”, ”, ”);
// 数据库授权 grant all privileges on dbname.name.* to [email protected] identified by ‘password’;
// 刷新权限信息 FLUSH PRIVILEGES; “`
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/113828.html原文链接:https://javaforall.cn
边栏推荐
- Simple and easy to modify spring frame components
- 2022.7.6DAY598
- Force buckle 1002 Find common characters
- Use of dotween
- 【STM32】实战3.1—用STM32与TB6600驱动器驱动42步进电机(一)
- Online hard core tools
- uniCloud
- Using tansformer to segment three-dimensional abdominal multiple organs -- actual battle of unetr
- BUUCTF---Reverse---reverse1
- [untitled]
猜你喜欢
[OneNote] can't connect to the network and can't sync the problem
MPX plug-in
2021-04-23
seata 1.3.0 四種模式解决分布式事務(AT、TCC、SAGA、XA)
Input type= "password" how to solve the problem of password automatically brought in
Différences entre les contraintes monotones et anti - monotones
[untitled]
Shardingsphere sub database and table examples (logical table, real table, binding table, broadcast table, single table)
從色情直播到直播電商
Opencv installation and environment configuration - vs2017
随机推荐
2021-05-21
Get pictures through opencv, change channels and save them
How to remove addition and subtraction from inputnumber input box
[untitled]
Network engineer test questions and answers in May of the first half of 2022
QT document
“梦想杯”2017 年江苏省信息与未来小学生夏令营 IT 小能手 PK 之程序设计试题
【安装系统】U盘安装系统教程,使用UltraISO制作U盘启动盘
What are the contents of the intermediate soft test, the software designer test, and the test outline?
Galaxy Kirin desktop operating system installation postgresql13 (source code installation)
JS array delete the specified element
2021 summary and 2022 outlook
SQL Server knowledge collection 11: Constraints
Deconstruction and assignment of variables
Arduino receives and sends strings
Simple and easy to modify spring frame components
Deeply understand the characteristics of database transaction isolation
Typescript interface inheritance
Idea shortcut keys
JSON format query of MySQL