筆記 MySQL基本命令(1)

2021-10-04 12:14:39 字數 1095 閱讀 6394

說明:<>:表示語句中必須指定的資料物件。:表明可選可不選。|:表示多個選項只能選乙個。{}:表示是必選項。

mysql中不區分大小寫。

1.建立資料庫:create database [if not exits] 《資料庫名》;

說明:[if not exits]選項用來在建立資料庫之前判斷,可用來避免資料庫已經存在而重複建立的錯誤。

2.建立資料庫並檢視資料庫:show databases [like 《資料庫名》];

說明:like是可選項,用以匹配指定的資料庫名稱。show databases;命令用於檢視當前使用者許可權範圍內的資料庫。

3.建立資料庫並指定字符集:create database 《庫名》 default character srt=字符集;

說明:常見的字符集有utf-8,gb2312。

4.檢視建立的資料庫是如何定義的:show create database 《資料庫名》;(可以檢視資料庫的指定字符集)

6.修改表的字符集:alter table 《表名》 convert to character set 《字符集名》;

7.刪除資料庫:drop database [if exits] 《資料庫名》;(刪除資料庫中的所有**並同時刪除資料庫)

說明:①[if exits]用來防止資料庫不存在時發生錯誤。②mysql安裝後,系統會自動建立information_schema和mysql這兩個系統資料庫,系統資料庫用來存放一些和資料庫相關的資訊,如果刪除了這兩個資料庫,mysql將不能正常工作。

8.選擇資料庫:use 《資料庫名》;執行之後,該資料庫為當前資料庫;

10.查詢當前使用者:select user();

11.查詢資料庫版本:select version();

12.查詢當前使用的資料庫:select database();

13.列出表清單:show tables;

14.檢視表結構:desc views:

15.顯示資料庫引擎:show engines;

show engines\g;(顯示的形式不一樣)

MySQL的基本命令(1)

啟動mysql 開始程式 mysql 5.5 command line client如果有密碼則輸入密碼後回車列出資料庫 show databases 選擇資料庫 use databasename 列出 show tables 顯示 列的屬性 show columns from tablename ...

mysql基本命令總結 mysql基本命令總結

1.在ubuntu上安裝mysql sudo apt get install mysql server sudo apt get install mysql client 2.安裝結束後,用命令驗證是否安裝並啟動成功 sudo netstat tap grep mysql 通過上述命令檢查之後,如果...

1 基本命令

1.git diff 比較不同git diff 工作區與暫存區比較git diff head 檔名 比較工作區與版本庫的區別git diff staged 暫存區與版本庫的比較 2.git log 日誌 git log git log pretty oneline 顯示一行 full,short,f...