Linuxの基本的なコマンド--- mysqlの

mysqlの

MySQLは、MySQLデータベースを管理するために使用することができ、単純なSQLシェル、です。

このコマンドの対象範囲:RedHatの、RHEL、Ubuntuの、CentOSの、Fedoraの。

 

1 、文法

mysqlの[オプション]デシベル 

 

2 、パラメータリスト

オプション

説明

- ?| - 助けて

ヘルプ情報を表示します

--auto-焼き直し

自動機能の焼き直しを有効に

--bind-アドレス = IP

コンピュータが複数のネットワークカードを持っているとき、あなたはカードを指定することができ、IPをバインドするときのMySQL接続

--characterセット-DIR  =  パス

キャラクターが設定されたディレクトリを指定します。

--column-名

結果の表示列名

-C | --comments

ディスプレイのコメントは、サーバーに送信されます

-c | --compress

サーバとクライアントの間でデータが圧縮されています

-D デシベル  | --database = デシベル 

データベース名を指定してください

--default-文字セット = chatset

デフォルトの文字セット

-e 声明  | --execute = 声明 

あなたが使用するコマンドを指定します。

-f | - 力

執行

-H | --html

出力html形式

-i | --ignore-スペース

スペースを無視

--line-番号

エラーメッセージの表示行番号

--local-infile=0|1

关闭或者开启LOAD DATA INFILE功能

-A | --no-autp-rehash

关闭自动rehash功能

-b | --no-beep

关闭出错提醒

-p password | --password=

连接数据库使用的密码

-W | --pipe

使用有名管道连接数据库

-P port | --port=

连接数据库使用的端口

--protocol=TCP|SOCKET|PIPI|MEMORY

连接数据库使用的协议

-q | --quick

不缓存查询结果

-s | --silent

输出简短的内容

-v | --verbose

显示详细执行过程

-V | --version

显示版本信息

-w | --wait

等待时间

-X | --xml

产生xml输出

-u user | --user=

连接数据库的用户名,默认是rootq

 

3、实例

1)登录

[root@localhost ~]# mysql -u root –p             //使用用户root连接数据库

Enter password: 

Welcome to the MySQL monitor.  Commands end with ; or \g.

Your MySQL connection id is 5

Server version: 5.1.71 Source distribution

 

Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.

 

Oracle is a registered trademark of Oracle Corporation and/or its

affiliates. Other names may be trademarks of their respective

owners.

 

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

 

mysql>quit           //退出

Bye

2)查看权限

mysql> show privileges;

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

| Privilege               | Context                               | Comment                                              |

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

| Alter                   | Tables                                | To alter the table                                    |

| Alter routine           | Functions,Procedures                  | To alter or drop stored functions/procedures          |

| Create                  | Databases,Tables,Indexes              | To create new databases and tables                    |

| Create routine          | Databases                             | To use CREATE FUNCTION/PROCEDURE                      |

| Create temporary tables | Databases                             | To use CREATE TEMPORARY TABLE                         |

| Create view             | Tables                                | To create new views                                   |

| Create user             | Server Admin                          | To create new users                                   |

| Delete                  | Tables                                | To delete existing rows                               |

| Drop                    | Databases,Tables                      | To drop databases, tables, and views                  |

| Event                   | Server Admin                          | To create, alter, drop and execute events             |

| Execute                 | Functions,Procedures                  | To execute stored routines                            |

| File                    | File access on server                 | To read and write files on the server                 |

| Grant option            | Databases,Tables,Functions,Procedures | To give to other users those privileges you possess   |

| Index                   | Tables                                | To create or drop indexes                             |

| Insert                  | Tables                                | To insert data into tables                            |

| Lock tables             | Databases                             | To use LOCK TABLES (together with SELECT privilege)   |

| Process                 | Server Admin                          | To view the plain text of currently executing queries |

| References              | Databases,Tables                      | To have references on tables                          |

| Reload                  | Server Admin                          | To reload or refresh tables, logs and privileges      |

| Replication client      | Server Admin                          | To ask where the slave or master servers are          |

| Replication slave       | Server Admin                          | To read binary log events from the master             |

| Select                  | Tables                                | To retrieve rows from table                           |

| Show databases          | Server Admin                          | To see all databases with SHOW DATABASES              |

| Show view               | Tables                                | To see views with SHOW CREATE VIEW                    |

| Shutdown                | Server Admin                          | To shut down the server                               |

| Super                   | Server Admin                          | To use KILL thread, SET GLOBAL, CHANGE MASTER, etc.   |

| Trigger                 | Tables                                | To use triggers                                       |

| Update                  | Tables                                | To update existing rows                               |

| Usage                   | Server Admin                          | No privileges - allow connect only                    |

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

29 rows in set (0.00 sec)

 

 

      


     做了一个Linux学习的平台,目前出来一个雏形,各位可以参考使用

      链接:https://pan.baidu.com/s/1GOLVU2CbpBNGtunztVpaCQ  密码:n7bk 

     081634m8n8t2tmz2te95w5.gif


おすすめ

転載: blog.51cto.com/9888479/2416045