mysql 常用命令

零 修订记录

序号修订内容修订时间
1新增2022/5/6

一 摘要

本文主要记录常用mysql 命令

二 环境信息

三 记录

(一)基础工具

3.1.1 查看某张表索引

3.1.1.1 mysql 版本

mysql 5.7

3.1.1.2 执行命令

show index from 表名;

show index from tdp_material;

示例

mysql> show index from tdp_material;
+--------------+------------+----------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
| Table        | Non_unique | Key_name       | Seq_in_index | Column_name | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment | Index_comment |
+--------------+------------+----------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
| tdp_material |          0 | PRIMARY        |            1 | id          | A         |           0 | NULL     | NULL   |      | BTREE      |         |               |
| tdp_material |          0 | index_material |            1 | group_id    | A         |           0 | NULL     | NULL   |      | BTREE      |         |               |
+--------------+------------+----------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+---------------+

3.1.2 新建用户和数据库以及授权

以下命令在mysql 5.7 上执行

create database piwigo_db  character set utf8 collate utf8_bin;
create user piwigo_db_user identified by '123456';
grant all privileges on piwigo_db.* to  piwigo_db_user@'%' identified by '123456' with grant option;
grant all privileges on piwigo_db.* to piwigo_db_user@localhost  identified by '123456' with grant option;
flush privileges;


版权声明:本文为nasooo原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。