第十七章 使用 MariaDB 数据库管理系统

news2024/12/24 8:46:07

1.  数据库管理系统

数据库是指按照某些特定结构来存储数据资料的数据仓库。在当今这个大数据技术迅速崛起的年代,互联网上每天都会生成海量的数据信息,数据库技术也从最初只能存储简单的表格数据的单一集中存储模式,发展到了现如今存储海量数据的大型分布式模式。在信息化社会中,能够充分有效地管理和利用各种数据,挖掘其中的价值,是进行科学研究与决策管理的重要前提。同时,数据库技术也是信息管理系统、办公自动化系统、决策支持系统等各类信息系统的核心组成部分,是进行科学研究和决策管理的重要技术手段。 
数据库管理系统是一种能够对数据库中存放的数据进行建立、修改、删除、查找、维护等操作的软件程序。它通过把计算机中具体的物理数据转换成适合用户理解的抽象逻辑数据,有效地降低数据库管理的技术门槛,因此即便是从事 Linux 运维工作的工程师也可以对数据库进行基本的管理操作。但是,我们的技术主线依然是 Linux 系统的运维,而数据库管理系统只不过是在此主线上的一个内容不断横向扩展、纵向加深的分支,不能指望在一两天之内就可以精通数据库管理技术。
既然是讲解数据库管理技术,就肯定绕不开 MySQL。MySQL 是一款市场占有率非常高的数据库管理系统,技术成熟,配置步骤相对简单,而且具有良好的可扩展性。但是,由于Oracle 公司在 2009年收购了 MySQL的母公司 Sun,因此 MySQL数据库项目也随之纳入 Oracle麾下,逐步演变为保持着开源软件的身份,但又申请了多项商业专利的软件系统。开源软件是全球黑客、极客、程序员等技术高手在开源社区的大旗下的公共智慧的结晶,自己的劳动成果被其他公司商业化自然也伤了一大批开源工作者的心,因此 MySQL 项目的创始人重新研发了一款名为 MariaDB 的全新数据库管理系统。 

2.  初始化 mariadb 服务 

相较于 MySQL,MariaDB 数据库管理系统有了很多新鲜的扩展特性,例如对微秒级别的支持、线程池、子查询优化、进程报告等。在配置妥当软件仓库后,即可安装部署 MariaDB数据库主程序及服务端程序了。

[root@linuxprobe~]# dnf install -y mariadb mariadb-server 
Updating Subscription Management repositories. 
Unable to read consumer identity 
This system is not registered to Red Hat Subscription Management. You can use  
subscription-manager to register. 
Last metadata expiration check: 0:00:19 ago on Tue 27 Apr 2021 05:04:27 PM CST. 
Dependencies resolved. 
=============================================================================== 
 Package        Arch   Version    Repository   Size 
=============================================================================== 
Installing: 
 mariadb             x86_64 3:10.3.11-1.module+el8+2765+cfa4f87b   AppStream   6.2 M 
 mariadb-server      x86_64 3:10.3.11-1.module+el8+cfa4f87b    AppStream  16 M 
Installing dependencies: 
 mariadb-common      x86_64 3:10.3.11-1.module+el8+cfa4f87b    AppStream  62 k 
 mariadb-connector-c   x86_64 3.0.7-1.el8                        AppStream 148 k 
 mariadb-connector-c-config noarch 3.0.7-1.el8                  AppStream  13 k 
 mariadb-errmsg      x86_64 3:10.3.11-1.module+el8+cfa4f87b    AppStream 232 k 
 perl-DBD-MySQL      x86_64 4.046-2.module+el8+0650e81c        AppStream 156 k 
Installing weak dependencies: 
 mariadb-backup      x86_64 3:10.3.11-1.module+el8+cfa4f87b    AppStream 6.2 M 
 mariadb-gssapi-server x86_64 3:10.3.11-1.module                 AppStream  49 k 
 mariadb-server-utils  x86_64 3:10.3.11-1.module+el8             AppStream 1.6 M 
Enabling module streams: 
 mariadb                    10.3 
 perl-DBD-MySQL             4.046 
 
Transaction Summary 
=============================================================================== 
Install  10 Packages 
………………省略部分输出信息……………… 
Installed: 
  mariadb-3:10.3.11-1.module+el8+2765+cfa4f87b.x86_64                           
  mariadb-server-3:10.3.11-1.module+el8+2765+cfa4f87b.x86_64                    
  mariadb-backup-3:10.3.11-1.module+el8+2765+cfa4f87b.x86_64                    
  mariadb-gssapi-server-3:10.3.11-1.module+el8+2765+cfa4f87b.x86_64             
  mariadb-server-utils-3:10.3.11-1.module+el8+2765+cfa4f87b.x86_64              
  mariadb-common-3:10.3.11-1.module+el8+2765+cfa4f87b.x86_64                    
  mariadb-connector-c-3.0.7-1.el8.x86_64                                        
  mariadb-connector-c-config-3.0.7-1.el8.noarch                                 
  mariadb-errmsg-3:10.3.11-1.module+el8+2765+cfa4f87b.x86_64                    
  perl-DBD-MySQL-4.046-2.module+el8+2515+0650e81c.x86_64                        
 
Complete! 

在安装完毕后,记得启动服务程序,并将其加入到开机启动项中: 

[root@linuxprobe~]# systemctl start  mariadb 
[root@linuxprobe~]# systemctl enable mariadb 
Created symlink /etc/systemd/system/mysql.service→ /usr/lib/systemd/system/ 
mariadb.service. 
Created symlink /etc/systemd/system/mysqld.service→ /usr/lib/systemd/system/ 
mariadb.service. 
Created symlink /etc/systemd/system/multi-user.target.wants/mariadb.service→ / 
usr/lib/systemd/system/mariadb.service. 

在确认 mariadb 数据库软件程序安装完毕并成功启动后请不要立即使用。为了确保数据库的安全性和正常运转,需要先对数据库程序进行初始化操作。这个初始化操作涉及下面 5个步骤。 
 设置 root 管理员在数据库中的密码值(注意,该密码并非 root 管理员在系统中的密码,这里的密码值默认应该为空,可直接按回车键)。 
➢  设置 root 管理员在数据库中的专有密码。 
➢  删除匿名用户,并使用 root 管理员从远程登录数据库,以确保数据库上运行的业务的安全性。 
➢  删除默认的测试数据库,取消测试数据库的一系列访问权限。 
➢  刷新授权列表,让初始化的设定立即生效。 
对于上述数据库初始化的操作步骤,已经在下面的输出信息旁边进行了简单注释,确保各位读者更直观地了解要输入的内容: 

[root@linuxprobe~]# mysql_secure_installation 
 
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB 
      SERVERS IN PRODUCTION USE!  PLEASE READ EACH STEP CAREFULLY! 
 
In order to log into MariaDB to secure it, we'll need the current 
password for the root user.  If you've just installed MariaDB, and 
you haven't set the root password yet, the password will be blank, 
so you should just press enter here. 
 
Enter current password for root (enter for none): (输入管理员原始密码,默认为空值,直接回车即可)
 
OK, successfully used password, moving on... 
 
Setting the root password ensures that nobody can log into the MariaDB 
root user without the proper authorisation. 
 
Set root password? [Y/n] y  (设置管理员密码)
New password:   (输入新的密码)
Re-enter new password:   (再次输入密码)
Password updated successfully! 
Reloading privilege tables.. 
 ... Success! 
 
 
By default, a MariaDB installation has an anonymous user, allowing anyone 
to log into MariaDB without having to have a user account created for 
them.  This is intended only for testing, and to make the installation 
go a bit smoother.  You should remove them before moving into a 
production environment. 
 
Remove anonymous users? [Y/n] y  (删除匿名用户)
 ... Success! 
 
Normally, root should only be allowed to connect from 'localhost'.  This 
ensures that someone cannot guess at the root password from the network. 
Disallow root login remotely? [Y/n] y  (禁止管理员从远程登录)
 ... Success! 
 
By default, MariaDB comes with a database named 'test' that anyone can 
access.  This is also intended only for testing, and should be removed 
before moving into a production environment. 
 
Remove test database and access to it? [Y/n] y  (删除测试数据库及其权限)
 - Dropping test database... 
 ... Success! 
 - Removing privileges on test database... 
 ... Success! 
 
Reloading the privilege tables will ensure that all changes made so far 
will take effect immediately. 
 
Reload privilege tables now? [Y/n] y  (刷新授权表,让初始化设定立即生效)
 ... Success! 
 
Cleaning up... 
 
All done!  If you've completed all of the above steps, your MariaDB 
installation should now be secure. 
 
Thanks for using MariaDB! 

在很多生产环境中都需要使用站库分离的技术(即网站和数据库不在同一个服务器上),如果需要让 root 管理员远程访问数据库,可在上面的初始化操作中设置策略,以允许 root 管理员从远程访问。然后还需要设置防火墙,使其放行对数据库服务程序的访问请求。数据库服务程序默认会占用 3306 端口,在防火墙策略中服务名称统一叫作 mysql: 

[root@linuxprobe~]# firewall-cmd --permanent --add-service=mysql 
success 
[root@linuxprobe~]# firewall-cmd --reload 
success 

一切准备就绪。现在我们将首次登录 MariaDB 数据库。管理数据库的命令为 mysql,其中,-u 参数用来指定以 root 管理员的身份登录,而-p 参数用来验证该用户在数据库中的密码值。 

[root@linuxprobe~]# mysql -u root -p 
Enter password:   (输入刚才设置的管理员密码后敲击回车)
Welcome to the MariaDB monitor.  Commands end with ; or \g. 
Your MariaDB connection id is 16 
Server version: 10.3.11-MariaDB MariaDB Server 
 
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. 
 
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. 

初次使用数据库管理工具的读者,可以输入 help 命令查看 mariadb 服务能做的操作,语句的用法与 MySQL 一模一样: 

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. 
 
For server side help, type 'help contents' 

在登录 MariaDB 数据库后执行数据库命令时,都需要在命令后面用分号(;)结尾,这也是与 Linux 命令最显著的区别。大家需要慢慢习惯数据库命令的这种设定。下面执行如下命令查看数据库管理系统中当前都有哪些数据库: 

MariaDB [(none)]> SHOW databases; 
+--------------------+ 
| Database           | 
+--------------------+ 
| information_schema | 
| mysql              | 
| performance_schema | 
+--------------------+ 
3 rows in set (0.000 sec ) 

小试牛刀过后,接下来使用数据库命令将 root 管理员在数据库管理系统中的密码值修改为 linuxprobe。这样退出后再尝试登录,如果还坚持输入原先的密码,则将提示访问失败。 

MariaDB [(none)]> SET password = PASSWORD('linuxprobe'); 
Query OK, 0 rows affected (0.001 sec) 
 
MariaDB [(none)]> exit 
Bye 
[root@linuxprobe~]# mysql -u root -p 
Enter password:   (此处输入管理员在数据库中的旧密码)
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES) 

输入新密码(linuxprobe)后,便可顺利进入数据库管理工具中: 

[root@linuxprobe~]# mysql -u root -p 
Enter password:   (此处输入管理员在数据库中的新密码)
Welcome to the MariaDB monitor.  Commands end with ; or \g. 
Your MariaDB connection id is 20 
Server version: 10.3.11-MariaDB MariaDB Server 
 
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. 
 
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. 

3.  管理用户以及授权 

在生产环境中总不能一直“死啃”root 管理员。为了保障数据库系统的安全性,以及让其他用户协同管理数据库,可以在 MariaDB 数据库管理系统中为他们创建多个专用的数据库管理用户,然后再分配合理的权限,以满足他们的工作需求。为此,可使用 root 管理员登录数据库管理系统,然后按照“CREATE USER 用户名@主机名 IDENTIFIED BY '密码';”的格式创建数据库管理用户。再次提醒大家,一定不要忘记每条数据库命令后面的分号(;)

MariaDB [(none)]> CREATE USER luke@localhost IDENTIFIED BY 'linuxprobe'; 
Query OK, 0 rows affected (0.00 sec) 

 创建的用户信息可以使用 SELECT 命令语句来查询。下面命令查询的是用户 luke 的主机名称、用户名称以及经过加密的密码值信息: 

MariaDB [(none)]> use mysql; 
Database changed 
MariaDB [mysql]> SELECT HOST,USER,PASSWORD FROM user WHERE USER="luke"; 
+-----------+------+-------------------------------------------+ 
| HOST      | USER | PASSWORD                                  | 
+-----------+------+-------------------------------------------+ 
| localhost | luke | *55D9962586BE75F4B7D421E6655973DB07D6869F | 
+-----------+------+-------------------------------------------+ 
1 row in set (0.001 sec) 

不过,用户 luke 仅仅是一位普通用户,没有数据库的任何操作权限。不信的话,可以切换到 luke 用户来查询数据库管理系统中当前都有哪些数据库。可以发现,该用户甚至没法查看完整的数据库列表(刚才使用 root 用户时可以查看到 3 个数据库列表): 

MariaDB [mysql]> exit 
Bye 
[root@linuxprobe~]# mysql -u luke -p 
Enter password:  (输入luke用户的数据库密码)  
Welcome to the MariaDB monitor.  Commands end with ; or \g. 
Your MariaDB connection id is 21 
Server version: 10.3.11-MariaDB MariaDB Server 
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. 
 
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. 
 
MariaDB [(none)]> SHOW databases; 
+--------------------+ 
| Database           | 
+--------------------+ 
| information_schema | 
+--------------------+ 
1 row in set (0.001 sec) 

数据库管理系统所使用的命令一般都比较复杂。我们以 GRANT 命令为例进行说明。GRANT 命令用于为用户进行授权,其常见格式如表所示。在使用 GRANT 命令时需要写上要赋予的权限、数据库及表单名称,以及对应的用户及主机信息。其实,只要理解了命令中每个字段的功能含义,也就不觉得命令复杂难懂了。 

当然,用户的授权工作肯定是需要数据库管理员来执行的。下面以 root 管理员的身份登录到数据库管理系统中,针对 mysql 数据库中的 user 表单向用户 luke 授予查询、更新、删除以及插入等权限。 

[root@linuxprobe~]# mysql -u root -p 
Enter password:   (输入管理员的数据库密码)
MariaDB [(none)]> use mysql; 
Reading table information for completion of table and column names 
You can turn off this feature to get a quicker startup with -A 
Database changed 
MariaDB [mysql]> GRANT SELECT,UPDATE,DELETE,INSERT ON mysql.user TO luke@localhost; 
Query OK, 0 rows affected (0.001 sec) 

在执行完上述授权操作之后,我们再查看一下用户 luke 的权限: 

MariaDB [(none)]> SHOW GRANTS FOR luke@localhost; 
+------------------------------------------------------------------+ 
| Grants for luke@localhost                                        | 
+------------------------------------------------------------------+ 
| GRANT USAGE ON *.* TO 'luke'@'localhost' IDENTIFIED BY PASSWORD  
'*55D9962586BE75F4B7D421E6655973DB07D6869F' | 
| GRANT SELECT, INSERT, UPDATE, DELETE ON `mysql`.`user` TO 'luke'@'localhost'     | 
+-----------------------------------------------------------------------------+ 
2 rows in set (0.000 sec) 

上面输出信息中显示用户 luke已经拥有了针对mysql 数据库中 user 表单的一系列权限了。这时我们再切换到用户 luke,此时就能够看到 mysql 数据库了,而且还能看到表单 user(其余表单会因无权限而被继续隐藏): 

[root@linuxprobe~]# mysql -u luke -p 
Enter password:  (输入luke用户的数据库密码)  
 
MariaDB [(none)]> SHOW databases; 
+--------------------+ 
| Database           | 
+--------------------+ 
| information_schema | 
| mysql              | 
+--------------------+ 
2 rows in set (0.000 sec) 
 
MariaDB [(none)]> use mysql; 
Database changed 
 
MariaDB [mysql]> SHOW tables; 
+-----------------+ 
| Tables_in_mysql  | 
+-----------------+ 
| user            | 
+-----------------+ 
1 row in set (0.001 sec) 
 
MariaDB [mysql]> exit 
Byes 

大家不要心急,我们接下来会慢慢学习数据库内容的修改方法。当前,先切换回 root 管理员用户,移除刚才的授权。 

[root@linuxprobe~]# mysql -u root -p 
Enter password:   (输入管理员的数据库密码)
MariaDB [(none)]> use mysql; 
Database changed 
MariaDB [(none)]> REVOKE SELECT,UPDATE,DELETE,INSERT ON mysql.user FROM  
luke@localhost; 
Query OK, 0 rows affected (0.00 sec) 

可以看到,除了移除授权的命令(REVOKE)与授权命令(GRANTS)不同之外,其余部分都是一致的。这不仅好记而且也容易理解。执行移除授权命令后,再来查看用户 luke 的信息: 

MariaDB [(none)]> SHOW GRANTS FOR luke@localhost; 
+-----------------------------------------------------------------+ 
| Grants for luke@localhost                                           | 
+-----------------------------------------------------------------+ 
| GRANT USAGE ON *.* TO 'luke'@'localhost' IDENTIFIED BY PASSWORD  
'*55D9962586BE75F4B7D421E6655973DB07D6869F' | 
+------------------------------------------------------------------+ 
1 row in set (0.001 sec) 

不再需要某个用户时,可以直接用 DROP 命令将其删除:

MariaDB [(none)]> DROP user luke@localhost; 
Query OK, 0 rows affected (0.000 sec) 

4.  创建数据库与表单 

在 MariaDB 数据库管理系统中,一个数据库可以存放多个数据表,数据表单是数据库中最重要最核心的内容。我们可以根据自己的需求自定义数据库表结构,然后在其中合理地存放数据,以便后期轻松地维护和修改。表罗列了后文中将使用到的数据库命令以及对应的作用。 

建立数据库是管理数据的起点。现在尝试创建一个名为 linuxprobe 的数据库,然后再查看数据库列表,此时就能看到它了: 

MariaDB [(none)]>  CREATE DATABASE linuxprobe; 
Query OK, 1 row affected (0.001 sec) 
 
MariaDB [(none)]>  SHOW databases; 
+--------------------+ 
| Database           | 
+--------------------+ 
| information_schema | 
| linuxprobe         | 
| mysql              | 
| performance_schema | 
+--------------------+ 
4 rows in set (0.001 sec) 

MariaDB 与 MySQL 同属于关系型数据库(Relational  Database  Management  System,RDBMS)。关系型数据库有些类似于表格的概念,一个关系型数据库由一个或多个表格/表单组成,如图 18-2 所示。 
在图 18-2 中,表头表示每一列的名称;列表示具有相同数据类型的数据集合;行表示用来描述事物的具体信息;值表示行的具体信息,每个值均与该列的其他数据类型相同;键表示用来识别某个特定事物的方法,在当前列中具有唯一性。 

比如,在新建的 linuxprobe 数据库中创建表单 mybook,然后进行表单的初始化,即定义存储数据内容的结构。我们分别定义 3 个字段项,其中,字符型字段 name(长度为 15 字符)用来存放图书名称,整型字段 price 和 pages 分别存储图书的价格和页数。当执行完下述命令之后,就可以看到表单的结构信息了: 

MariaDB [(none)]> use linuxprobe; 
Database changed 
MariaDB [linuxprobe]> CREATE TABLE mybook (name char(15),price int,pages int); 
Query OK, 0 rows affected (0.009 sec) 
 
MariaDB [linuxprobe]> DESCRIBE mybook; 
+-------+----------+------+-----+---------+-------+ 
| Field | Type     | Null | Key | Default | Extra | 
+-------+----------+------+-----+---------+-------+ 
| name  | char(15) | YES  |     | NULL    |       | 
| price | int(11)  | YES  |     | NULL    |       | 
| pages | int(11)  | YES  |     | NULL    |       | 
+-------+----------+------+-----+---------+-------+ 
3 rows in set (0.002 sec) 

5.  管理表单及数据

接下来向 mybook 数据表单中插入一条图书信息。为此需要使用 INSERT 命令,并在命令中写清表单名称以及对应的字段项。执行该命令之后即可完成图书写入信息。下面使用该命令插入一条图书信息,其中书名为 linuxprobe,价格和页数分别是 60 元和 518 页。在命令执行后也就意味着图书信息已经成功写入到数据表单中,然后就可以查询表单中的内容了。在使用 SELECT 命令查询表单内容时,需要加上想要查询的字段;如果想查看表单中的所有内容,则可以使用星号(*)通配符来显示: 

MariaDB [linuxprobe]> INSERT INTO mybook(name,price,pages) VALUES('linuxprobe','60', '518'); 
Query OK, 1 row affected (0.001 sec) 
 
MariaDB [linuxprobe]> SELECT * from mybook; 
+------------+-------+-------+ 
| name       | price | pages | 
+------------+-------+-------+ 
| linuxprobe |    60 |   518 | 
+------------+-------+-------+ 
1 row in set (0.000 sec) 

对数据库运维人员来讲,需要做好 4 门功课—增、删、改、查。这意味着创建数据表单并在其中插入内容仅仅是第一步,还需要掌握数据表单内容的修改方法。例如,可以使用UPDATE 命令将刚才插入的 linuxprobe 图书信息的价格修改为 55 元,然后再使用 SELECT 命令查看该图书的名称和定价信息。注意,因为这里只查看图书的名称和定价,而不涉及页码,所以无须再用星号通配符来显示所有内容。 

MariaDB [linuxprobe]> UPDATE mybook SET price=55 ; 
Query OK, 1 row affected (0.002 sec) 
Rows matched: 1  Changed: 1  Warnings: 0 
 
MariaDB [linuxprobe]> SELECT name,price FROM mybook; 
+------------+-------+ 
| name       | price | 
+------------+-------+ 
| linuxprobe |    55 | 
+------------+-------+ 
1 row in set (0.000 sec) 

想修改指定的某一条记录?没问题的,用 WHERE 命令进行限定即可。我们先插入两条图书信息: 

MariaDB [linuxprobe]> INSERT INTO mybook(name,price,pages) VALUES('linuxcool','85', '300'); 
Query OK, 1 row affected (0.001 sec) 
MariaDB [linuxprobe]> INSERT INTO mybook(name,price,pages) VALUES('linuxdown','105', '500'); 
Query OK, 1 row affected (0.001 sec) 

然后使用 WHERE 命令仅将名称为 linuxcool 的图书价格修改为 60 元,不影响其他图书信息: 

MariaDB [linuxprobe]> UPDATE mybook SET price=60 where name='linuxcool'; 
Query OK, 1 row affected (0.001 sec) 
Rows matched: 1  Changed: 1  Warnings: 0 
 
MariaDB [linuxprobe]> select * from mybook; 
+------------+-------+-------+ 
| name       | price | pages | 
+------------+-------+-------+ 
| linuxprobe |    55 |   518 | 
| linuxcool  |    60 |   300 | 
| linuxdown  |   105 |   500 | 
+------------+-------+-------+ 
3 rows in set (0.001 sec) 

还可以使用 DELETE 命令删除某个数据表单中的内容。下面使用 DELETE 命令删除数据表单 mybook 中的所有内容,然后再查看该表单中的内容,可以发现该表单内容为空了: 

MariaDB [linuxprobe]> DELETE FROM mybook; 
Query OK, 3 row affected (0.001 sec) 
 
MariaDB [linuxprobe]> SELECT * FROM mybook; 
Empty set (0.000 sec) 

一般来讲,数据表单中会存放成千上万条数据信息。比如我们刚刚创建的用于保存图书信息的 mybook 表单,随着时间的推移,里面的图书信息也会越来越多。在这样的情况下,如果只想查看其价格大于某个数值的图书,又该如何定义查询语句呢? 
下面先使用 INSERT 插入命令依次插入 4 条图书信息: 

MariaDB [linuxprobe]> INSERT INTO mybook(name,price,pages) VALUES('linuxprob
e1','30','518'); 
Query OK, 1 row affected (0.05 sec) 
MariaDB [linuxprobe]> INSERT INTO mybook(name,price,pages) VALUES('linuxprob
e2','50','518'); 
Query OK, 1 row affected (0.05 sec) 
MariaDB [linuxprobe]> INSERT INTO mybook(name,price,pages) VALUES('linuxprob
e3','80','518'); 
Query OK, 1 row affected (0.01 sec) 
MariaDB [linuxprobe]> INSERT INTO mybook(name,price,pages) VALUES('linuxprobe
4','100','518'); 
Query OK, 1 row affected (0.00 sec) 

要想让查询结果更加精准,就需要结合使用 SELECT 与 WHERE 命令了。其中,WHERE命令是在数据库中进行匹配查询的条件命令。通过设置查询条件,就可以仅查找出符合该条件的数据。表 18-3 列出了 WHERE 命令中常用的查询参数以及作用。 

现在进入动手环节。分别在 mybook 表单中查找出价格大于 75 元或价格不等于 80 元的图书,其对应的命令如下所示。在熟悉了这两个查询条件之后,大家可以自行尝试精确查找图书名为 linuxprobe2 的图书信息。 

MariaDB [linuxprobe]> SELECT * FROM mybook WHERE price>75; 
+-------------+-------+-------+ 
| name        | price | pages | 
+-------------+-------+-------+ 
| linuxprobe3 |    80 |   518 | 
| linuxprobe4 |   100 |   518 | 
+-------------+-------+-------+ 
2 rows in set (0.001 sec) 
 
MariaDB [linuxprobe]> SELECT * FROM mybook WHERE price!=80; 
+-------------+-------+-------+ 
| name        | price | pages | 
+-------------+-------+-------+ 
| linuxprobe1 |    30 |   518 | 
| linuxprobe2 |    50 |   518 | 
| linuxprobe4 |   100 |   518 | 
+-------------+-------+-------+ 
3 rows in set (0.000 sec) 

匹配的条件越多,获得的信息就越精准。在 WHERE 命令的后面追加 AND 操作符可以进行多次匹配。例如,执行下述命令,找到价格为 30 元、页数为 518 的图书的名称: 

MariaDB [linuxprobe]> SELECT * from mybook WHERE price=30 AND pages=518 ; 
+-------------+-------+-------+ 
| name         | price | pages| 
+-------------+-------+-------+ 
| linuxprobe1 |    30 |   518 | 
+-------------+-------+-------+ 
1 row in set (0.000 sec) 

6.  数据库的备份及恢复

前文提到,本书的技术主线是 Linux 系统的运维方向,不会对数据库管理系统的操作进行深入的讲解,因此大家掌握了上面这些基本的数据库操作命令之后就足够了。下面要讲解的是数据库的备份以及恢复,这些知识比较实用,希望大家能够掌握。 
mysqldump 命令用于备份数据库数据,格式为“mysqldump [参数] [数据库名称]”。其中参数与 mysql 命令大致相同,-u 参数用于定义登录数据库的用户名称,-p 参数表示密码提示符。下面将 linuxprobe 数据库中的内容导出为一个文件,并保存到 root 管理员的家目录中:

[root@linuxprobe~]# mysqldump -u root -p linuxprobe > /root/linuxprobeDB.dump 
Enter password:   (输入管理员的数据库密码)

然后进入 MariaDB 数据库管理系统,彻底删除 linuxprobe 数据库,这样 mybook 数据表单也将被彻底删除。然后重新建立 linuxprobe 数据库: 

[root@linuxprobe~]# mysql -u root -p 
Enter password:  (输入管理员的数据库密码) 
 
MariaDB [(none)]> DROP DATABASE linuxprobe; 
Query OK, 1 row affected (0.04 sec) 
 
MariaDB [(none)]> SHOW databases; 
+--------------------+ 
| Database           | 
+--------------------+ 
| information_schema | 
| mysql              | 
| performance_schema | 
+--------------------+ 
3 rows in set (0.02 sec) 
 
MariaDB [(none)]> CREATE DATABASE linuxprobe; 
Query OK, 1 row affected (0.00 sec) 

接下来是见证数据恢复效果的时刻!使用输入重定向符把刚刚备份的数据库文件导入到mysql 命令中,然后执行该命令。接下来登录 MariaDB 数据库,就又能看到 linuxprobe 数据库以及 mybook 数据表单了。数据库恢复成功!

[root@linuxprobe~]# mysql -u root -p linuxprobe < /root/linuxprobeDB.dump 
Enter password:   (输入管理员的数据库密码)
[root@linuxprobe~]# mysql -u root -p 
Enter password:   (输入管理员的数据库密码)
MariaDB [(none)]> use linuxprobe; 
Database changed 
 
MariaDB [linuxprobe]> SHOW tables; 
+----------------------+ 
| Tables_in_linuxprobe  | 
+----------------------+ 
| mybook               | 
+----------------------+ 
1 row in set (0.000 sec) 
 
MariaDB [linuxprobe]> describe mybook; 
+-------+----------+------+-----+---------+-------+ 
| Field | Type     | Null | Key | Default | Extra | 
+-------+----------+------+-----+---------+-------+ 
| name  | char(15) | YES  |     | NULL    |       | 
| price | int(11)  | YES  |     | NULL    |       | 
| pages | int(11)  | YES  |     | NULL    |       | 
+-------+----------+------+-----+---------+-------+ 
3 rows in set (0.002 sec) 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/2255605.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

11.17【大数据】Hadoop【DEBUG】

列出hdfs文件系统所有的目录和文件 主节点上 子结点 是一样的 *为什么能登进 slave 02 的主机,但是 master 当中依然显示 slave 02 为 DeadNode?* hadoop坏死节点的重启_hadoop3 子节点重启-CSDN博客 注意hadoop-daemon.sh 实际上位于 Hadoop 的 sbin 目录中&#xff0c;而不…

MetaGPT 安装

1. 创建环境 conda create -n metagpt python3.10 && conda activate metagpt2. 可编辑方式安装 git clone --depth 1 https://github.com/geekan/MetaGPT.git cd MetaGPT pip install -e .3. 配置 metagpt --init-config运行命令&#xff0c;在C盘位置C:\Users\325…

图的最小生成树(Kruskal算法,Prim算法)

无向图中的最短路径问题&#xff1f;No&#xff0c;最短路径不是最小生成树&#xff01; 什么是最小生成树&#xff1f; 在一个无向连通图中&#xff0c;有一个子图连接所有顶点&#xff0c;并且权重和最小&#xff0c;那么他就是最小生成树。如果权重和不是最小的只能叫做生…

【Flink-scala】DataStream编程模型之水位线

DataStream API编程模型 1.【Flink-Scala】DataStream编程模型之 数据源、数据转换、数据输出 2.【Flink-scala】DataStream编程模型之 窗口的划分-时间概念-窗口计算程序 3.【Flink-scala】DataStream编程模型之 窗口计算-触发器-驱逐器 文章目录 DataStream API编程模型前言…

PHP RabbitMQ连接超时问题

问题背景 Error: The connection timed out after 3 sec while awaiting incoming data 看到这个报错&#xff0c;我不以为意&#xff0c;认为是我设置的超时时间不够导致的&#xff0c;那就设置长一点 Error: The connection timed out after 300 sec while awaiting incom…

【LeetCode热题100】BFS解决FloodFill算法

这篇博客主要记录了使用BFS解决FloodFill算法的几道题目&#xff0c;包括图像渲染、岛屿数量、岛屿的最大面积、被包围的区域。 class Solution {using PII pair<int, int>; public:vector<vector<int>> floodFill(vector<vector<int>>& im…

L2G3000-LMDeploy 量化部署实践

文章目录 LMDeploy 量化部署实践闯关任务环境配置W4A16 量化 KV cacheKV cache 量化Function call LMDeploy 量化部署实践闯关任务 环境配置 conda create -n lmdeploy python3.10 -y conda activate lmdeploy conda install pytorch2.1.2 torchvision0.16.2 torchaudio2.1.…

大数据新视界 -- 大数据大厂之 Hive 临时表与视图:灵活数据处理的技巧(上)(29 / 30)

&#x1f496;&#x1f496;&#x1f496;亲爱的朋友们&#xff0c;热烈欢迎你们来到 青云交的博客&#xff01;能与你们在此邂逅&#xff0c;我满心欢喜&#xff0c;深感无比荣幸。在这个瞬息万变的时代&#xff0c;我们每个人都在苦苦追寻一处能让心灵安然栖息的港湾。而 我的…

Ubuntu操作系统在Vmware中的安装、常用操作、最基础的知识、imx6ll基本开发环境配置

01-Ubuntu操作系统的安装 网盘搜索 “ubuntu18.04.zip”&#xff0c;下载下来之后用Vmware打开就行了。 我用的虚拟机是15.5.6&#xff0c;实测没有问题。 启动时用户名为book的密码为123456 提问&#xff1a;Ubuntu与Centos系统有何区别&#xff1f; 详情见 https://blog.cs…

windows2012服务器安装sqlserver2012出现NetFx3错误的解决方法。

出现以下错误: 启用 Windows 功能 NetFx3 时出错&#xff0c;错误代码: -2146498298。请尝试从 Windows 管理工具启用 Windows 功能 NetFx3&#xff0c;然后重新运行安装程序。有关如何启用 Windows 功能的详细信息&#xff0c;具体解决办法如下&#xff1a; 1、打开PowerShel…

FPGA实战篇(按键控制LDE实验)

1.按键简介 按键开关是一种电子开关&#xff0c;属于电子元器件类。我们的开发板上有两种按键开关&#xff1a;第一种是本实验所使用的轻触式按键开关&#xff0c;简称轻触开关。使用时以向开关的操作方向施加压力使内部电路闭合接通&#xff0c;当撤销压力时开关断开&#xff…

C++析构函数和构造函数

一、构造函数 1.构造函数的基本概念 1.对构造函数的理解&#xff1a; 构造函数是类的一种特殊成员函数&#xff0c;其主要功能是在创建对象时进行初始化操作。它的名字与类名相同&#xff0c;并且没有返回值类型&#xff08;不能是void&#xff09;。例如&#xff0c;对于一个…

【Axure高保真原型】数值条件分组

今天和大家分享数值条件分组的原型模板&#xff0c;效果包括&#xff1a; 点击添加分组按钮&#xff0c;可以显示添加弹窗&#xff0c;填写分组名称和数值区间后&#xff0c;可以新增该分组信息‘’ 修改分组区间&#xff0c;可以直接在输入框里修改已有的分组区间&#xff0c…

阳光电脑公司的维修服务微信小程序ssm+论文源码调试讲解

第2章 开发环境与技术 阳光电脑公司的维修服务微信小程序的编码实现需要搭建一定的环境和使用相应的技术&#xff0c;接下来的内容就是对阳光电脑公司的维修服务微信小程序用到的技术和工具进行介绍。 2.1 MYSQL数据库 本课题所开发的应用程序在数据操作方面是不可预知的&…

重生之我在异世界学编程之C语言:深入结构体篇(下)

大家好&#xff0c;这里是小编的博客频道 小编的博客&#xff1a;就爱学编程 很高兴在CSDN这个大家庭与大家相识&#xff0c;希望能在这里与大家共同进步&#xff0c;共同收获更好的自己&#xff01;&#xff01;&#xff01; 本文目录 引言结构体的自引用实现链表一、链表的基…

使用Redis Stream偶发空指针问题

问题描述&#xff1a;使用redission客户端封装的stream消息队列&#xff0c;在进行消息轮询时&#xff0c;偶发出现空指针问题。 [2024-11-13 09:59:20] [] [] [redis-stream-consumer-thread-1 ] [lambda$streamMessageListenerContainer$1] [ERROR] [c.r.c.r.s.config.Redi…

35页PDF | 元数据与数据血缘落地实施(限免下载)

一、前言 这份报告详细介绍了元数据与数据血缘的概念、重要性以及在企业数据中台中的应用。报告阐述了数据中台的核心价值在于整合和管理体系内的数据&#xff0c;以提升数据资产化能力并支持业务决策。报告还涵盖了元数据的分类&#xff08;技术元数据和业务元数据&#xff0…

方案精读:50页智慧园区数字化平台总体规划与建设方案PPT

本文介绍了智慧园区数字化平台总体规划与建设方案&#xff0c;包括智慧园区工业云平台、智慧办公平台、智能工厂、智慧能源管理、智慧政务管理等方面的建设内容。方案旨在通过技术手段加强园区内部沟通和管理能力&#xff0c;实现个性化营销、柔性化制造、高效智能协同的供应链…

深入浅出:Go语言标准库探索

深入浅出&#xff1a;Go语言标准库探索 引言 Go语言自发布以来&#xff0c;以其简洁的语法、高效的性能和强大的并发支持赢得了开发者的青睐。除了这些特性外&#xff0c;Go还拥有一个功能丰富且设计精良的标准库&#xff0c;几乎涵盖了现代应用程序开发所需的所有基本功能。…

python selenium(4+)+chromedriver最新版 定位爬取嵌套shadow-root(open)中内容

废话不多说&#xff0c;直接开始 本文以无界作为本文测试案例&#xff0c;抓取shadow-root&#xff08;open&#xff09;下的内容 shadow Dom in selenium&#xff1a; 首先先讲一下shadow Dom in selenium 版本的区别&#xff0c;链接指向这里 在Selenium 4版本 以及 chrom…