【CentOS实用篇】之maria数据库的基本使用

本文简要介绍mariadb数据库的基本操作,安装教程请参照【CentOS实用篇】之二进制安装mariadb http://www.jianshu.com/p/fb188a37ae76

在Mariadb初始化,并设置好密码连接之后,mysql命令不能直接登入数据库,需要指定用户和密码,在添加了外部主机的情况下,使用外部主机联机数据库,需要指定数据库主机的ip

-uUSERNAME: 用户名;默认为root
-hHOST: 服务器主机; 默认为localhost
-pPASSWORD:用户的密码;建议使用-p,默认为空密码

也可以在-p后面不跟密码,程序会自动提示输入密码,以静默的方式输入密码,避免密码的泄露

[root@c7 ~]#mysql -uroot -pmagedu
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 27
Server version: 10.2.8-MariaDB-log MariaDB Server

Copyright (c) 2000, 2017, Oracle, MariaDB Corporation Ab and others.

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

MariaDB [(none)]> 

数据库的基础帮助
数据库的帮助使用help查看,也可以使用 \h; 查询,注意前面的斜杠和后面的分号不能落下

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.
nopager   (\n) Disable pager, print to stdout.
notee     (\t) Don't write into outfile.
pager     (\P) Set PAGER [to_pager]. Print the query results via PAGER.
print     (\p) Print current command.
prompt    (\R) Change your mysql prompt.
quit      (\q) Quit mysql.
rehash    (\#) Rebuild completion hash.
source    (\.) Execute an SQL script file. Takes a file name as an argument.
status    (\s) Get status information from the server.
system    (\!) Execute a system shell command.
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.

基础命令查询

查看数据库版本

MariaDB [(none)]> select version();
+--------------------+
| version()          |
+--------------------+
| 10.2.8-MariaDB-log |
+--------------------+
1 row in set (0.00 sec)

查看当前用户

MariaDB [(none)]> select user();
+----------------+
| user()         |
+----------------+
| root@localhost |
+----------------+

SQL语句构成

Keyword组成clause
多条clause组成语句
SELECT * ------------------ SELECT子句
FROM products ----------- FROM子句
WHERE price>400 ------ WHERE子句

SQL语句:
DDL: Data DefinationLanguage ----------------- # 数据的定义语言
CREATE(创建), DROP(删除), ALTER(修改)
DML: Data Manipulation Language ------------ # 数据的操作语言
INSERT(添加), DELETE(删除), UPDATE(更新)
DCL:Data Control Language ------------------ # 数据的控制语言
GRANT(授权), REVOKE(取消权限)
DQL:Data Query Language ------------------- # 数据的查询语言
SELECT(查询)

SQL命令大小写不敏感,建议大写。字符串敞亮区分大小写。SQL语句可以单行写或者多行写,以分号;结尾,关键词不能跨行,也不能简写,必须写在一行。建议用缩进提高可读性。
注释:
/注释内容/ -------------------- # 多行注释
--注释内容--------------------- # 单行注释,注意有空格
MySQL注释:#

数据库对象的命名规则
必须以字母开头
可包括数字和三个特殊字符(# _ $)
不要使用MySQL的保留字
同一Schema下的对象不能同名

创建数据库

使用create命令创建magedb数据库,查询数据库文件夹内生成的magedb目录

[root@c7 dbdata]#mysql -uroot -p
Enter password: 
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 30
Server version: 10.2.8-MariaDB-log MariaDB Server

Copyright (c) 2000, 2017, Oracle, MariaDB Corporation Ab and others.

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

MariaDB [(none)]> create database magedb;
Query OK, 1 row affected (0.00 sec)

[root@c7 ~]#ll /app/dbdata/
total 122980
-rw-rw---- 1 mysql mysql    16384 Sep 25 17:21 aria_log.00000001
-rw-rw---- 1 mysql mysql       52 Sep 25 17:21 aria_log_control
-rw-rw---- 1 mysql mysql        5 Sep 25 17:22 c7.pid
-rw-rw---- 1 mysql mysql     2799 Sep 25 17:21 ib_buffer_pool
-rw-rw---- 1 mysql mysql 12582912 Sep 25 17:22 ibdata1
-rw-rw---- 1 mysql mysql 50331648 Sep 25 17:22 ib_logfile0
-rw-rw---- 1 mysql mysql 50331648 Sep 25 17:15 ib_logfile1
-rw-rw---- 1 mysql mysql 12582912 Sep 25 17:22 ibtmp1
drwx------ 2 mysql mysql       20 Sep 25 22:17 magedb

使用drop命令删除magedb数据库,查看magedu文件已删除

MariaDB [(none)]> drop database magedb;
Query OK, 0 rows affected (0.01 sec)

MariaDB [(none)]> 

[root@c7 ~]#ls /app/dbdata/
aria_log.00000001  ibdata1      multi-master.info  mysql-bin.000003
aria_log_control   ib_logfile0  mysql              mysql-bin.index
c7.pid             ib_logfile1  mysql-bin.000001   performance_schema
ib_buffer_pool     ibtmp1       mysql-bin.000002   test
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,384评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,845评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,148评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,640评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,731评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,712评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,703评论 3 415
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,473评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,915评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,227评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,384评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,063评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,706评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,302评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,531评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,321评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,248评论 2 352

推荐阅读更多精彩内容