USE database
命令用于選擇數(shù)據(jù)庫,如果想在一個數(shù)據(jù)庫上工作,比如:創(chuàng)建表,查詢表,更新,創(chuàng)建存儲過程等等,那么首先需要選擇一個目標(biāo)數(shù)據(jù)庫。
USE database_name;
示例
假設(shè)在MariaDB數(shù)據(jù)庫服務(wù)器中,存在有多個數(shù)據(jù)庫,我們必須選擇一個特定的數(shù)據(jù)庫。
例如,在下圖中顯示了多個數(shù)據(jù)庫:
MariaDB [(none)]> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
| products |
| test |
| testdb |
+--------------------+
6 rows in set (0.00 sec)
這里我們將使用"testdb"
數(shù)據(jù)庫來創(chuàng)建表等。所以需要使用以下USE
命令。
USE testdb;
在執(zhí)行上面查詢語句后,就已經(jīng)選擇"testdb"
數(shù)據(jù)庫。之后就可以在里面創(chuàng)建表等數(shù)據(jù)對象了。執(zhí)行上面查詢語句效果如下 -
MariaDB [(none)]> USE testdb;
Database changed
MariaDB [testdb]>