MySQL命令讲析
admin
2023-04-30 18:43:59
0

本文主要给大家介绍MySQL命令讲析,希望可以给大家补充和更新些知识,如有其它问题需要了解的可以持续在行业资讯里面关注我的更新文章的。

命令

例子

说明

描述

show


显示数据库、表、列的信息和云服务器状态

SHOW has many forms that provide information about databases, tables,

columns, or status information about the server.


mysql> show databases;

+--------------------+

| Database           |

+--------------------+

| information_schema |

| mysql              |

| performance_schema |

| test               |

+--------------------+

4 rows in set (0.00 sec)

显示所有数据库



mysql> show grants for oldboy@'localhost';  

+---------------------------------------------------------------------------------------------------------------+

| Grants for oldboy@localhost                                                                                   |

+---------------------------------------------------------------------------------------------------------------+

| GRANT USAGE ON *.* TO 'oldboy'@'localhost' IDENTIFIED BY PASSWORD '*FE28814B4

+---------------------------------------------------------------------------------------------------------------+

1 row in set (0.00 sec)

显示用户权限USAGE表示没有权限



mysql> show databases like '%my%';

+-----------------+

| Database (%my%) |

+-----------------+

| mysql           |

+-----------------+

1 row in set (0.00 sec)

模糊匹配



mysql> show create database oldboy;

显示创建数据库的语句



show CHARACTER SET;

显示gbk的校对规则



mysql> show tables;  

+------------------+

| Tables_in_oldboy |

+------------------+

| student          |

+------------------+

1 row in set (0.00 sec)

#查看表



mysql> show create table student\G  

*************************** 1. row ***************************

      Table: student

Create Table: CREATE TABLE `student` (

 `id` int(4) NOT NULL,

 `name` char(20) NOT NULL,

 `are` tinyint(2) NOT NULL DEFAULT '0',

 `dept` varchar(16) DEFAULT NULL

) ENGINE=InnoDB DEFAULT CHARSET=utf8

1 row in set (0.00 sec)

#查看创建表语句



mysql> show index from student\G  

*************************** 1. row ***************************

       Table: student

  Non_unique: 0

    Key_name: PRIMARY    #索引类型

Seq_in_index: 1

 Column_name: id     #索引列名称

   Collation: A

 Cardinality: 0

    Sub_part: NULL

      Packed: NULL

        Null:

  Index_type: BTREE

     Comment:

Index_comment:

#查看表的索引


MySQL命令讲析

命令

例子

中文说明

英文描述

select





select user,host from mysql.user;

查询mysql库的user表的用户



mysql> select database();  

+------------+

| database() |

+------------+

| NULL       |

+------------+

1 row in set (0.00 sec)

查看当前数据库



mysql> select user();

+----------------+

| user()         |

+----------------+

| root@localhost |

+----------------+

1 row in set (0.01 sec)

查看当前用户



mysql> select version();  

+------------+

| version()  |

+------------+

| 5.5.32-log |

+------------+

1 row in set (0.00 sec)

查看数据库版本



mysql> select now();  

+---------------------+

| now()               |

+---------------------+

| 2018-04-10 22:25:11 |

+---------------------+

1 row in set (0.00 sec)

查看当前时间



mysql> select count(distinct user) from mysql.user;

+----------------------+

| count(distinct user) |

+----------------------+

|                    7 |

+----------------------+

1 row in set (0.01 sec)

统计表记录的唯一值的命令



mysql> select * from test;  

+----+--------+

| id | name   |

+----+--------+

|  1 | oldboy |

+----+--------+

1 row in set (0.00 sec)

查看表所有数据



mysql> select * from test limit 2;  

+----+--------+

| id | name   |

+----+--------+

|  1 | oldboy |

|  2 | old111 |

+----+--------+

2 rows in set (0.00 sec)

查询表的前2行



mysql> select * from test limit 2,3;

+----+------+

| id | name |

+----+------+

|  3 | kk   |

|  4 | zuma |

+----+------+

2 rows in set (0.00 sec)

查询表的2到3行



mysql> select * from test where id=1;

+----+--------+

| id | name   |

+----+--------+

|  1 | oldboy |

+----+--------+

1 row in set (0.00 sec)

按条件查询表的数据



mysql> select * from test where id>2;

+----+------+

| id | name |

+----+------+

|  3 | kk   |

|  4 | zuma |

+----+------+

2 rows in set (0.00 sec)

条件范围查询表数据



mysql> select * from test where id>2 and id<5;  

+----+------+

| id | name |

+----+------+

|  3 | kk   |

|  4 | zuma |

+----+------+

2 rows in set (0.00 sec)

条件范围查询表数据



mysql> select id,name from test where id>1 and id<5 order by id desc into outfile '/tmp/a.txt';

Query OK, 3 rows affected (0.00 sec)

#导出表数据


命令

例子

中文说明

英文描述

explain





mysql> explain select * from test where name='oldboy'\G  

*************************** 1. row ***************************

          id: 1

 select_type: SIMPLE

       table: test

        type: ref

possible_keys: index_name  #已使用,没使用为NULL

         key: index_name    #已使用

     key_len: 60

         ref: const

        rows: 1

       Extra: Using where; Using index

1 row in set (0.00 sec)

#查看表字段是否使用索引



[root@db02 ~]# mysql -uroot -poldboy123 -S /data/3306/mysql.sock -e "show full processlist;"|egrep -vi "sleep"

Id User Host db Command Time State Info

7 root localhost NULL Query 0 NULL show full process

抓取慢查询语句


命令

例子

中文说明

英文描述

desc

mysql> desc student;  

+-------+-------------+------+-----+---------+-------+

| Field | Type        | Null | Key | Default | Extra |

+-------+-------------+------+-----+---------+-------+

| id    | int(4)      | NO   |     | NULL    |       |

| name  | char(20)    | NO   |     | NULL    |       |

| are   | tinyint(2)  | NO   |     | 0       |       |

| dept  | varchar(16) | YES  |     | NULL    |       |

+-------+-------------+------+-----+---------+-------+

4 rows in set (0.00 sec)

查看表结构


命令

例子

中文说明

英文描述

update


UPDATE语法可以用新值更新原有表行中的各列.SET子句指示要修改哪些列和要给予哪些值。WHERE子句指定应更新哪些行。如果没有WHERE子句,则更新所有的行。如果指定了ORDER BY子句,则按照被指定的顺序对行进行更新。

LIMIT子句用于给定一个限值,限制可以被更新的行的数目。

For the single-table syntax, the UPDATE statement updates columns of

existing rows in the named table with new values. The SET clause

indicates which columns to modify and the values they should be given.

Each value can be given as an expression, or the keyword DEFAULT to set

a column explicitly to its default value. The WHERE clause, if given,

specifies the conditions that identify which rows to update. With no

WHERE clause, all rows are updated. If the ORDER BY clause is

specified, the rows are updated in the order that is specified. The

LIMIT clause places a limit on the number of rows that can be updated


mysql> update mysql.user SET password=PASSWORD("oldboy123") WHERE user='root' and host='localhost';

update(修改) mysql.user(mysql数据库的user表) SET(指定哪列?改password列,要给予哪些值?PASSWORD值) password=PASSWORD("oldboy123") (改成oldboy123,PASSWORD必须加因为这个是加密的)WHERE(对谁进行更改?) user='root'(对root用户) and host='localhost';(和主机localhost修改)



mysql> update test set name='inct' where id=3;  

Query OK, 1 row affected (0.00 sec)

Rows matched: 1  Changed: 1  Warnings: 0

#修改id为3的name,修改表一定要加条件



mysql> update test set name='inct';

Query OK, 4 rows affected (0.00 sec)

Rows matched: 5  Changed: 4  Warnings: 0

#如果不加条件是全部修改,这种问题是致命的。


命令

例子

中文说明

英文描述

alter


修改语句



mysql> alter table student change id id int primary key auto_increment;  

#修改主键索引



mysql> alter table student drop index index_name;  

Query OK, 0 rows affected (0.00 sec)

Records: 0  Duplicates: 0  Warnings: 0

#删除普通索引



mysql> alter table student add index index_name(name);

Query OK, 0 rows affected (0.09 sec)

Records: 0  Duplicates: 0  Warnings: 0

修改表的普通索引


命令

例子

中文说明

英文描述

drop





mysql> drop user ""@localhost;

Query OK, 0 rows affected (0.00 sec)

删除用户



mysql> drop database oldboy_gbk;  

Query OK, 0 rows affected (0.01 sec)

删除数据库



drop table student;  

删除之前建的表


命令

例子

中文说明

英文描述

delete


删除语句

For the single-table syntax, the DELETE statement deletes rows from

tbl_name and returns a count of the number of deleted rows.


mysql> delete from test where id=1;  

Query OK, 1 row affected (0.00 sec)

#删除表指定的ID


命令

例子

中文说明

英文描述

create


创建语句



mysql> create database oldboy;

创建一个oldboy的数据库



mysql> create database oldboy_gbk  CHARACTER SET gbk COLLATE gbk_chinese_ci;

创建gbk数据库



mysql> create user 'oldboy'@'localhost' identified by 'oldboy123';  

Query OK, 0 rows affected (0.01 sec)

#创建用户



create table student(  

id int(4) not null,

name char(20) not null,

are tinyint(2) NOT NULL default '0',

dept varchar(16) default NULL

);

创建表



mysql> create index index_dept on student(dept(8));

Query OK, 0 rows affected (0.02 sec)

Records: 0  Duplicates: 0  Warnings: 0

创建表某列的前8个字节的普通索引



mysql> create index index_name_dept on student(name,dept);  

Query OK, 0 rows affected (0.05 sec)

Records: 0  Duplicates: 0  Warnings: 0

创建表的联合索引



mysql> create index index_name_dept on student(name(8),dept(10));

Query OK, 0 rows affected (0.03 sec)

Records: 0  Duplicates: 0  Warnings: 0

创建表的联合索引前N个字符



mysql> create unique index uni_ind_name on student(name);  

Query OK, 0 rows affected (0.03 sec)

Records: 0  Duplicates: 0  Warnings: 0

#创建表唯一索引


命令

例子

中文说明

英文描述

grant


授权MYSQL用户权限和指定特殊权限

The GRANT statement grants privileges to MySQL user accounts. GRANT

also serves to specify other account characteristics such as use of

secure connections and limits on access to server resources. To use

GRANT, you must have the GRANT OPTION privilege, and you must have the

privileges that you are granting.


mysql> grant all on oldboy.* to oldboy@'localhost';

Query OK, 0 rows affected (0.01 sec)

 #授权给oldboy用户



mysql> grant all on oldboy.* to 'oldboy11'@'localhost' identified by 'oldboy123';

Query OK, 0 rows affected (0.00 sec)

创建用户和密码并且授权


命令

例子

中文说明

英文描述

insert


插入语句

INSERT inserts new rows into an existing table. The INSERT ... VALUES

and INSERT ... SET forms of the statement insert rows based on

explicitly specified values. The INSERT ... SELECT form inserts rows

selected from another table or tables. INSERT ... SELECT is discussed

further in [HELP INSERT SELECT].


mysql> insert into test (id,name) values(1,'oldboy');

Query OK, 1 row affected (0.00 sec)

插入id=1 name=oldboy的内容到test表中


命令

例子

中文说明

英文描述

REVOKE


撤销权限

The REVOKE statement enables system administrators to revoke privileges

from MySQL accounts. Each account name uses the format described in


mysql> REVOKE INSERT ON oldboy.* FROM 'oldboy'@'localhost';  

撤销插入权限


命令

例子

中文说明

英文描述

truncate

mysql> truncate table test;  

#清空表数据


命令

例子

中文说明

英文描述

flush


刷新语句

The FLUSH statement has several variant forms that clear or reload

various internal caches, flush tables, or acquire locks. To execute

FLUSH, you must have the RELOAD privilege. Specific flush options might

require additional privileges, as described later.


mysql> flush privileges;



命令

例子

中文说明

英文描述

use


切换数据库相等于CD



mysql> use oldboy  

Database changed

切换到oldboy数据库


看了以上关于MySQL命令讲析,希望能给大家在实际运用中带来一定的帮助。本文由于篇幅有限,难免会有不足和需要补充的地方,如有需要更加专业的解答,可在官网联系我们的24小时售前售后,随时帮您解答问题的。

 

相关内容

热门资讯

男生偷拍女生被连夜开除,学历再... 据央视新闻报道,记者从南京审计大学获悉,经查,该校学生顾某某在校内偷拍他人隐私情况属实,且情节严重。...
“台独”顽固分子刘世芳外甥被台... 5月13日,国务院台办举行例行新闻发布会。有记者问:对于“台独”顽固分子刘世芳外甥颜文群被所在台企解...
1至4月全国铁路完成固定资产投... 【大河财立方消息】 5月13日,国铁集团发布的数据显示,今年1至4月,铁路建设优质高效推进,全国铁路...
了不起的河洛文化丨巩义的盛唐物... 巩义出土的唐三彩。 河南省文物考古研究院供图近日,郑州市文物考古研究院考古博物馆二楼报告厅举办了一场...
方太油烟机自动排烟故障 方太油烟机是一款高品质的厨房电器,它能够有效地吸收和排除厨房产生的油烟,保持室内空气的清新。然而,在...
方太油烟机的油烟怎么处理 方太油烟机是一种能够清除厨房油烟的设备,可以有效的净化厨房空气,减少油烟对人体的危害。但是,油烟机使...
方太油烟机尺寸为什么有大有小 在挑选抽油烟机时,抽油烟机的尺寸是重点考虑问题。如果购买到的抽油烟机尺寸过大,必然会占用太多空间,甚...
邻妹妹帮办|冷冻玉米长黑斑仍在... “玉米霉变非常明显,超市还在售卖!”近日,信阳市浉河区湖东街道辖区居民李女士向大河报·邻妹妹反映,其...
电视机安装高度 1、安装电视的观看距离应该至少为显示屏对角距离的3到5倍,安装高度建议以用户坐在椅子或沙发上眼睛平视...
安装构件的吊装高度包括 具体要看吊装设备的承载力,如果起重重量达100吨以上,那么这种构件的吊装高度起码要在75米左右。当然...