ps:如果原來安裝了,則sudo rm -rf /usr/local/mysql
(全部小寫)刪除原來安裝的
1 安裝homebrew
開啟控制台
2. brew install mysql
3. brew services start mysql
4. mysql -uroot
如果進入mysql> 語句,是成功
如果還是不行,重啟一下電腦
啟動:
brew services start mysql
mysql -uroot
關閉:(\q 退出)
brew services stop mysql
命令:
所有的語句需要分號結尾,sq語句需要使用純大寫,而其他的名稱使用純小寫加下劃線的形式書寫
但是sql對大小寫不敏感
show schemas(或 databases);
顯示當前系統中的資料庫
create schema test1;
建立資料庫
use test1;
預設資料庫為test1
一行叫記錄,一列叫資料項
乙個**需要乙個主鍵,id int primary key not null;主鍵一定是非空獨一無二
其他項,非空not null 獨一無二unique
varchar 可變化字串
字符集,charset = utf8
window下: charset = gbk
create
table student (
id int
primary
key,
name varchar(20) not
null,
*** enum("male", "female"),
length double
) charset = utf8;
show tables;
desc student;
select 檢視表中內容
select id;
select id && name;
select * from student;
insert student set id = 1, name = "mike", *** = "male", length = 1.70;插入
delete
from student where id = 1; 刪除
select name from student where length = 1.68; 查詢
update student set length = 1.8
where id = 1; 更新
drop
table student; 刪除表
drop
schema test1; 刪除資料庫
mysql的安裝使用 mysql的安裝和使用
centos5.5下安裝mysql 5.5.9ga 或mysql 5.5.8ga 的經過和心得 筆記 1.檢視當前centos版本為5.5 final lsb release a 3.更新需要的庫 yum install gcc gcc c yum install ncurses devel ncu...
在mac中安裝zsh
今天配置環境的時候看到別人推薦使用zsh,我就想裝個oh my zsh來試試,有兩種方法 1 在官網上有乙個安裝命令,在終端中使用 curl l sh自動安裝。git clone git oh my zsh cp oh my zsh templates zshrc.zsh template zshr...
在mac中安裝docker
本文使用的環境是mac os 10.11.5 docker 1.12.0。一 安裝docker for mac前需要知道的事情 三 安裝docker for mac 按照提示,一路往下走,最終會看到docker已經執行的頁面。四 檢查版本資訊 shell 1.docker version 2.doc...