首先安裝mysql
如果電腦上安裝有brew可以使用brew方式安裝
brew install mysql
啟動相應的mysql服務
mysql.server start
登入本機的 mysql 資料庫
只需要輸入以下命令即可:
mysql -u root -p
出現錯誤:
-bash: mysql: command not found
輸入:alias mysql=/usr/local/mysql/bin/mysql
再重新輸入:
mysql -u root -p
按回車確認, 如果安裝正確且 mysql 正在執行, 會得到以下響應:
enter password:
若密碼存在, 輸入密碼登入, 不存在則直接按回車登入。登入成功後你將會看到 welcome to the mysql monitor… 的提示語。
然後命令提示符會一直以 mysq> 加乙個閃爍的游標等待命令的輸入, 輸入 exit 或 quit 退出登入。
建立資料庫表
create database fisttestdatabase;
檢視資料庫表是否建立成功
show databases;
建立乙個資料庫gbk字符集資料庫
create database mydb2 character set gbk;
檢視建立的資料庫
show create database mydb2;
檢視所有的字符集
show character set;
charset
description
default collation
maxlen
armscii8
armscii-8 armenian
armscii8_general_ci
1ascii
us ascii
ascii_general_ci
1big5
big5 traditional chinese
big5_chinese_ci
2binary
binary pseudo charset
binary
1cp1250
windows central european
cp1250_general_ci
1cp1251
windows cyrillic
cp1251_general_ci
1cp1256
windows arabic
cp1256_general_ci
1cp1257
windows baltic
cp1257_general_ci
1cp850
dos west european
cp850_general_ci
1cp852
dos central european
cp852_general_ci
1cp866
dos russian
cp866_general_ci
1cp932
sjis for windows japanese
cp932_japanese_ci
2dec8
dec west european
dec8_swedish_ci
1eucjpms
ujis for windows japanese
eucjpms_japanese_ci
3euckr
euc-kr korean
euckr_korean_ci
2gb18030
china national standard gb18030
gb18030_chinese_ci
4gb2312
gb2312 simplified chinese
gb2312_chinese_ci
2gbk
gbk simplified chinese
gbk_chinese_ci
2geostd8
geostd8 georgian
geostd8_general_ci
1greek
iso 8859-7 greek
greek_general_ci
1hebrew
iso 8859-8 hebrew
hebrew_general_ci
1hp8
hp west european
hp8_english_ci
1keybcs2
dos kamenicky czech-slovak
keybcs2_general_ci
1koi8r
koi8-r relcom russian
koi8r_general_ci
1koi8u
koi8-u ukrainian
koi8u_general_ci
1latin1
cp1252 west european
latin1_swedish_ci
1latin2
iso 8859-2 central european
latin2_general_ci
1latin5
iso 8859-9 turkish
latin5_turkish_ci
1latin7
iso 8859-13 baltic
latin7_general_ci
1macce
mac central european
macce_general_ci
1macroman
mac west european
macroman_general_ci
1sjis
shift-jis japanese
sjis_japanese_ci
2swe7
7bit swedish
swe7_swedish_ci
1tis620
tis620 thai
tis620_thai_ci
1ucs2
ucs-2 unicode
ucs2_general_ci
2ujis
euc-jp japanese
ujis_japanese_ci
3utf16
utf-16 unicode
utf16_general_ci
4utf16le
utf-16le unicode
utf16le_general_ci
4utf32
utf-32 unicode
utf32_general_ci
4utf8
utf-8 unicode
utf8_general_ci
3utf8mb4
utf-8 unicode
utf8mb4_0900_ai_ci
4建立資料庫以及效驗規則
create database mydbfour character set utf8 collate utf8_general_ci;
刪除資料庫
drop database mydbthree;
// 刪除資料庫
修改資料庫的字符集
alter database mydbfour character set gbk
查詢當前資料庫
select database()
切換資料庫
use mydb2;
Mac上用終端使用mySQL
首先開啟終端輸入如下命令 usr local mysql bin mysql u root p 其中root為使用者名稱。這時會出現如下命令 enter password 此時如果你沒有改密碼,直接敲回車。否則,輸入你的密碼。這樣就可以訪問你的資料庫伺服器了。下面介紹一些關於從資料庫建立到使用的一些...
Mac上安裝與使用MYSQL
1.登入mysql 終端 也可以直接把mysql目錄下的bin資料夾拖進終端自動生成目錄 usr local mysql bin mysql u root p提示輸入密碼,這裡輸入安裝結束後生成的密碼,然後即可進入mysql 另外也可以通過偏好設定裡的mysql圖標點開進行資料庫開啟關閉 2.更改m...
Mac上用終端使用mySQL
首先開啟終端輸入如下命令 usr local mysql bin mysql u root p 其中root為使用者名稱。這時會出現如下命令 enter password 此時如果你沒有改密碼,直接敲回車。否則,輸入你的密碼。這樣就可以訪問你的資料庫伺服器了。下面介紹一些關於從資料庫建立到使用的一些...