昨天南昌網(wǎng)絡(luò)公司小編為大家介紹了關(guān)于Linux中mysql命令的用法,那么今天就來為大家介紹一下linux中MySQL數(shù)據(jù)庫(kù)的創(chuàng)建方法。
MySQL服務(wù)器將數(shù)據(jù)組織成數(shù)據(jù)庫(kù),數(shù)據(jù)庫(kù)通常保存著單個(gè)應(yīng)用程序的數(shù)據(jù),與用這個(gè)數(shù)據(jù)庫(kù)服務(wù)器的其他應(yīng)用互不相關(guān)。為每個(gè)shell腳本應(yīng)用創(chuàng)建一個(gè)單獨(dú)的數(shù)據(jù)庫(kù)有助于消除混淆,避免數(shù)據(jù)混用。
創(chuàng)建一個(gè)新的數(shù)據(jù)庫(kù)要用如下SQL語句。
CREATE DATABASE name;
非常簡(jiǎn)單,當(dāng)然了,你必須擁有在MySQL服務(wù)器上創(chuàng)建新數(shù)據(jù)庫(kù)的權(quán)限。簡(jiǎn)單的辦法是作為root用戶登錄MySQL服務(wù)器。
$ mysql -u root –p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or g.
Your MySQL connection id is 42
Server version: 5.5.38-0ubuntu0.14.04.1 (Ubuntu)
Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.
Type 'help;' or 'h' for help. Type 'c' to clear the current input statement.
mysql> CREATE DATABASE mytest;
Query OK, 1 row affected (0.02 sec)
mysql>
可以使用SHOW命令來查看新數(shù)據(jù)庫(kù)是否創(chuàng)建成功。
好了,它已經(jīng)成功創(chuàng)建了。
以上就是南昌網(wǎng)絡(luò)公司小編為大家介紹的關(guān)于linux中MySQL數(shù)據(jù)庫(kù)的創(chuàng)建方法,是不是很簡(jiǎn)單呢?雖然簡(jiǎn)單,但是大家在編寫代碼時(shí)也要仔細(xì)一點(diǎn),避免出錯(cuò)!了解更多關(guān)于數(shù)據(jù)庫(kù)方面的知識(shí),歡迎訪問公司官網(wǎng)。此外,百恒網(wǎng)絡(luò)專業(yè)為您提供網(wǎng)站建設(shè)、微信開發(fā)、APP開發(fā)、網(wǎng)站推廣等服務(wù),如有需要,百恒隨時(shí)為您效勞!