您好,登錄后才能下訂單哦!
這篇文章主要講解了“MySQL內置help解析”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“MySQL內置help解析”吧!
1,登錄MySQL,詢問系統內置說明書
root@db02 scripts]# mysql -uroot -S /data/3306/mysql.sock Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 1 Server version: 5.6.36 Source distribution Copyright (c) 2000, 2017, 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> ? contents ##我們不知道怎么用,就問系統,你都有什么內容,下面就是它反饋給你的內容 Account Management ##賬戶管理 Administration ###管理 Compound Statements ##復合語句 Data Definition ##數據定義 Data Manipulation ##數據操作 Data Types ##數據類型 Functions ##功能 Functions and Modifiers for Use with GROUP BY ##與組一起使用的函數和修飾符 Geographic Features ##地理特征 Help Metadata ##幫助元數據 Language Structure ##語言結構 Plugins ##插件 Procedures ##程序 Storage Engines ##存儲引擎 Table Maintenance ##表維護 Transactions ##交易 User-Defined Functions ##用戶定義的函數 Utility ##效用
2,我們按照它給的說明書,進行下面的詢問
1)例如:我們想新建1個數據庫,怎么找到語法呢?
mysql> ? Data Definition #查看了上面的說明書,應該在數據如何定義這里面,所以?問號它; You asked for help about help category: "Data Definition" For more information, type 'help <item>', where <item> is one of the following topics: CREATE DATABASE CREATE EVENT CREATE FUNCTION CREATE INDEX CREATE LOGFILE GROUP CREATE PROCEDURE CREATE SERVER CREATE TABLE CREATE TABLESPACE CREATE TRIGGER .....若干省略選項
2)通過上面 就找到了 CREATE DATABASE 選項,但我還是不會建立數據庫啊,那繼續問吧
mysql> ? CREATE DATABASE Name: 'CREATE DATABASE' Description: Syntax: CREATE {DATABASE | SCHEMA} [IF NOT EXISTS] db_name #這次就找到新建數據庫的語法了,直接創建即可 [create_specification] ... ##需要注意{}大括號多選1,[]可選可忽略,其它必選 create_specification: [DEFAULT] CHARACTER SET [=] charset_name | [DEFAULT] COLLATE [=] collation_name CREATE DATABASE creates a database with the given name. To use this statement, you need the CREATE privilege for the database. CREATE SCHEMA is a synonym for CREATE DATABASE. URL: http://dev.mysql.com/doc/refman/5.6/en/create-database.html
3)下面就是根據系統提示的語法,新建一個qiuyuetao的數據庫
mysql> create database qiuyuetao; Query OK, 1 row affected (0.05 sec) mysql> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | mysql | | performance_schema | | qiuyuetao | | test | +--------------------+ 5 rows in set (0.07 sec)
3,SQL語句分為3類
1)DDL :數據定義的語言,可?Data Definition去查詢
create、alter、drop,管理基礎數據:例如 庫,表
2)DCL:Data control Language-數據控制語言
grant、revoke、commit,rollback,用戶授權,權限回收,數據提交回滾
3)DML:Date Manipulation Language-數據操作語言
select、update、delete、insert,對表與記錄 做操作
感謝各位的閱讀,以上就是“MySQL內置help解析”的內容了,經過本文的學習后,相信大家對MySQL內置help解析這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。