在CentOS7下,官方提供的mysql的rpm包就是mariadb,可查看mariadb包信息mysql
[root@host ~]$rpm -qi mariadb # 須要先安裝該包 Name : mariadb # 名稱 Epoch : 1 Version : 5.5.52 # 版本 Release : 1.el7 # 發行版 Architecture: x86_64 # 支持安裝的CPU架構 Install Date: Mon 24 Apr 2017 08:44:48 AM CST # 安裝時間 Group : Applications/Databases Size : 50855896 License : GPLv2 with exceptions and LGPLv2 and BSD Signature : RSA/SHA256, Mon 21 Nov 2016 03:23:55 AM CST, Key ID 24c6a8a7f4a80eb5 Source RPM : mariadb-5.5.52-1.el7.src.rpm Build Date : Tue 15 Nov 2016 09:20:59 AM CST Build Host : c1bm.rdu2.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem <http://bugs.centos.org> Vendor : CentOS URL : http://mariadb.org Summary : A community developed branch of MySQL Description : # 描述 MariaDB is a community developed branch of MySQL. MariaDB is a multi-user, multi-threaded SQL database server. It is a client/server implementation consisting of a server daemon (mysqld) and many different client programs and libraries. The base package contains the standard MariaDB/MySQL client programs and generic MySQL files.
根據最後一項——Description描述,MariaDB屬於MySQL的社區開發分支。sql
同時,MariaDB是一款支持多用戶、多線程的SQL數據庫服務器。shell
MariaDB採用C/S架構,mysqld做爲服務器進程,還有許多的客服端程序和庫。數據庫
格式centos
mysql [OPTIONS] [database]
經常使用選項服務器
-u, --user=username:用戶名,默認爲root; -h, --host=hostname:遠程主機(即mysql服務器)地址,默認爲localhost; 客戶端鏈接服務端,服務器會反解客戶的IP爲主機名,關閉此功能(skip_name_resolve=ON); -p, --password[=PASSWORD]:USERNAME所表示的用戶的密碼; 默認爲空; 注意:mysql的用戶帳號由兩部分組成:'USERNAME'@'HOST'; 其中HOST用於限制此用戶可經過哪些遠程主機鏈接當前的mysql服務; HOST的表示方式,支持使用通配符: %:匹配任意長度的任意字符; 172.16.%.%, 172.16.0.0/16 _:匹配任意單個字符; -P, --port=#:mysql服務器監聽的端口;默認爲3306/tcp; -S, --socket=/PATH/TO/mysql.sock:套按字文件路徑; -D, --database=DB_name:鏈接到服務器端以後,設定其處指明的數據庫爲默認數據庫; -e, --execute='SQL STATEMENT':鏈接至服務器並讓其執行此命令後直接返回;
注:在上面的選項中,選項和參數之間能夠不使用空格分開。多線程
示例登陸mysql架構
[root@host ~]$mysql -uroot -p #帳號root, 選項和參數能夠不分開 Enter password: Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 54 Server version: 5.5.52-MariaDB MariaDB Server Copyright (c) 2000, 2016, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. MariaDB [(none)]> # 表示登陸成功
MariaDB [(none)]> help General information about MariaDB can be found at http://mariadb.org List of all MySQL commands: Note that all text commands must be first on line and end with ';' ? (\?) Synonym for `help'. # 查看幫助 clear (\c) Clear the current input statement. # 清空當前輸入的語句 connect (\r) Reconnect to the server. Optional arguments are db and host. # 從新鏈接服務器 delimiter (\d) Set statement delimiter. # 設置語句分隔符(結束符),默認爲分號';' edit (\e) Edit command with $EDITOR. # 編輯命令 ego (\G) Send command to mysql server, display result vertically. # 發送命令至服務器,垂直顯示結果 exit (\q) Exit mysql. Same as quit. # 退出 go (\g) Send command to mysql server. # 發送命令至服務器 help (\h) Display this help. # 查看幫助 quit (\q) Quit mysql. # 退出 source (\.) Execute an SQL script file. Takes a file name as an argument. # 讀取SQL腳本 system (\!) Execute a system shell command. # 執行shell命令 tee (\T) Set outfile [to_outfile]. Append everything into given outfile. # 設置輸出文件 use (\u) Use another database. Takes database name as argument. # 指定數據庫 charset (\C) Switch to another charset. Might be needed for processing binlog with multi-byte charsets. # 指定字符集 warnings (\W) Show warnings after every statement. # 顯示警告信息 nowarning (\w) Don't show warnings after every statement. # 不顯示警告信息
查看mysql服務端幫助信息,可以使用help contents:socket
MariaDB [(none)]> help contents You asked for help about help category: "Contents" For more information, type 'help <item>', where <item> is one of the following categories: 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 Table Maintenance Transactions User-Defined Functions Utility
要查看某一類命令或者某單一命令使用,都可使用help KEYWORD查看,例如:tcp
MariaDB [(none)]> help 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: ALTER DATABASE ALTER EVENT ALTER FUNCTION ... RENAME TABLE TRUNCATE TABLE
MariaDB [(none)]> help create table; Name: 'CREATE TABLE' Description: Syntax: CREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name (create_definition,...) [table_options] [partition_options] Or: CREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name [(create_definition,...)] [table_options] [partition_options] select_statement Or: CREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name { LIKE old_tbl_name | (LIKE old_tbl_name) } ...
自動增加類型 AUTO_INCREMENT 字符型: char/binary varchar/varbinary text/ngtext/blob/ediumblob/longblob set/enum 數值型 int/tinyint/smallint/mediumint/bigint decimal float/double 日期型 date/time/datetime/timestamp/year(2,4)
USE db_name
CREATE {DATABASE | SCHEMA} [IF NOT EXISTS] db_name; [DEFAULT] CHARACTER SET [=] charset_name # 設置字符集 [DEFAULT] COLLATE [=] collation_name # 設置排序方式 SHOW CHARACTER SET # 查看支持的全部的字符集 SHOW COLLATION # 查看支持的全部排序方式
ALTER {DATABASE | SCHEMA} [db_name]
DROP {DATABASE | SCHEMA} [IF EXISTS] db_name
SHOW {DATABASES | SCHEMAS} [LIKE 'pattern' | WHERE expr]
CREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name
(create_definition,...) # 字段定義
[table_options] # 數據表的基本設置
[partition_options] # 分割選項
ALTER [ONLINE | OFFLINE] [IGNORE] TABLE tbl_name
[alter_specification [, alter_specification] ...]
[partition_options]
DROP [TEMPORARY] TABLE [IF EXISTS]
tbl_name [, tbl_name] ...
[RESTRICT | CASCADE]
SELECT [ALL | DISTINCT | DISTINCTROW ] [HIGH_PRIORITY] [STRAIGHT_JOIN] [SQL_SMALL_RESULT] [SQL_BIG_RESULT] [SQL_BUFFER_RESULT] [SQL_CACHE | SQL_NO_CACHE] [SQL_CALC_FOUND_ROWS] select_expr [, select_expr ...] [FROM table_references [WHERE where_condition] [GROUP BY {col_name | expr | position} [ASC | DESC], ... [WITH ROLLUP]] [HAVING where_condition] [ORDER BY {col_name | expr | position} [ASC | DESC], ...] [LIMIT {[offset,] row_count | row_count OFFSET offset}] [PROCEDURE procedure_name(argument_list)] [INTO OUTFILE 'file_name' [CHARACTER SET charset_name] export_options | INTO DUMPFILE 'file_name' | INTO var_name [, var_name]] [FOR UPDATE | LOCK IN SHARE MODE]]
INSERT [LOW_PRIORITY | DELAYED | HIGH_PRIORITY] [IGNORE] [INTO] tbl_name [(col_name,...)] {VALUES | VALUE} ({expr | DEFAULT},...),(...),... [ ON DUPLICATE KEY UPDATE col_name=expr [, col_name=expr] ... ]
Single-table syntax: DELETE [LOW_PRIORITY] [QUICK] [IGNORE] FROM tbl_name [WHERE where_condition] [ORDER BY ...] [LIMIT row_count] Multiple-table syntax: DELETE [LOW_PRIORITY] [QUICK] [IGNORE] tbl_name[.*] [, tbl_name[.*]] ... FROM table_references [WHERE where_condition]
Single-table syntax: UPDATE [LOW_PRIORITY] [IGNORE] table_reference SET col_name1={expr1|DEFAULT} [, col_name2={expr2|DEFAULT}] ... [WHERE where_condition] [ORDER BY ...] [LIMIT row_count] Multiple-table syntax: UPDATE [LOW_PRIORITY] [IGNORE] table_references SET col_name1={expr1|DEFAULT} [, col_name2={expr2|DEFAULT}] ... [WHERE where_condition]
CREATE USER user_specification [, user_specification] ... user_specification: user [ IDENTIFIED BY [PASSWORD] 'password' | IDENTIFIED WITH auth_plugin [AS 'auth_string'] ]
DROP USER user [, user] ...
GRANT priv_type [(column_list)] [, priv_type [(column_list)]] ... ON [object_type] priv_level TO user_specification [, user_specification] ... [REQUIRE {NONE | ssl_option [[AND] ssl_option] ...}] [WITH with_option ...] GRANT PROXY ON user_specification TO user_specification [, user_specification] ... [WITH GRANT OPTION]
REVOKE
priv_type [(column_list)]
[, priv_type [(column_list)]] ...
ON [object_type] priv_level
FROM user [, user] ...
REVOKE ALL PRIVILEGES, GRANT OPTION
FROM user [, user] ...
REVOKE PROXY ON user
FROM user [, user] ...