Mysql

数据库操作

安装数据库
配置yum源
[root@localhost ~]# cat /etc/yum.repos.d/local.repo
[centos]
name=centos
baseurl=file:///opt/centos
gpgcheck=0

安装数据库Mariadb-5.5 (centos+gpmall-repo是10.3版本)
[root@localhost ~]# yum install -y mariadb mariadb-server

开启数据库初始化

数据库操作
进入数据库操作
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 3
Server version: 5.5.56-MariaDB 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)]>

不进入数据库操作
[root@localhost ~]# mysql -uroot -p000000 -e “create database wordpress;”

多段连用用 ;
[root@localhost ~]# mysql -uroot -p000000 -e “create database wordpress;use wordpress;”

格式问题
‘->’ 用 ;解决

用;表示结束,退出该语句。

创建数据库

查看数据库

数据库的详细使用
使用该数据库,使用之后可以创建表单插入数据。
MariaDB [wordpress]>

创建该数据库的表单

插入该表单的数据

查看该数据库下的test表单的数据

备份该数据库
将wordpress数据库备份到/opt/mysql_bak/wordpress.sql

[root@localhost opt]# ll
total 2
drwxr-xr-x 8 root root 2048 May 3 2018 centos
drwxr-xr-x 2 root root 27 Jun 1 11:39 mysql_bak
[root@localhost opt]# ll mysql_bak/
total 4
-rw-r--r-- 1 root root 1903 Jun 1 11:39 wordpress.sql

导入数据库
删除原有的数据库

查看数据库表单没有wordpress数据库。

从刚刚备份的导入wordpress数据库源。
创建wordpress数据库
MariaDB [(none)]> create database wordpress;
Query OK, 1 row affected (0.00 sec)
导入
MariaDB [(none)]> source /opt/mysql_bak/wordpress.sql
Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)
如下报错不用管

Mysql

上一篇:CentOS 配置 Apache HTTP MySql WordPress


下一篇:SQLServer -------- 一表多用,将关联的表变成字符串存储(C# 字符转datatable)