# 安裝MySQL
brew install mysql
# 卸載MySQL
brew uninstall --force mysql
# MySQL安裝無法建立link的問題
sudo chown -R $(whoami) /usr/local/lib/
啟動MySQL服務(wù)
mysql.server stop;
mysql.server start;
登陸登出賬號
mysql -uroot;
quit;
數(shù)據(jù)庫的使用
show databases; # 查看數(shù)據(jù)庫
use databases; # 使用數(shù)據(jù)庫
使用表格
# create books table
create table test.books (book_id int,title text, status int);
show tables from test; # 顯示數(shù)據(jù)庫中的表格
use test; # 使用數(shù)據(jù)庫
describe books; # 描述表格
drop table <表名>;
選擇數(shù)據(jù)
SELECT * FROM books;
SELECT * FROM books WHERE status = 1;
SELECT * FROM books WHERE status = 0 \G;
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者