2014年12月23日 星期二

[MySQL] 常用指令

連線
mysql -h host -u user –p
Enter password: ********

僅列出常用指令,不過每個人常用的指令也不盡相同,希望能幫忙到大家,之後有空也會陸續新增。


中斷
QUIT

查看有哪些資料庫
Show databases;

選擇使用資料庫,這邊使用的是mysql內建的world資料庫
Use world;

查看有哪些資料表,以下使用world資料庫裡的countrylanguage資料表
Show tables;

查看資料表結構
Describe countrylanguage;

查詢資料
最簡單的抓取全部資料
Select * from countrylanguage;
加入篩選條件
Select * from countrylanguage where countrycode=”TWN”;
抓取指定欄位資料
Select language from countrylanguage;

建立資料庫
Create database helloworld;

建立資料表
Create table hellotaiwan (country char(5),people int(6));

匯入資料表
Load data local infile “D:\hellotaiwan.txt” into helloworld terminated by ‘\t’lines terminated by ‘\n’;
Helloworld為資料表
Terminated 為每一欄位以某個字元做區隔
Lines terminated 為換行字元

修改紀錄
Update city set Name = “HelloWorld” where id = “168”;



如果您喜歡我的文章,請在文章最末按5下Like!
我將得到LikeCoin的回饋:)

回饋由LikeCoin基金會出資,您只要註冊/登入帳號(FB、Google帳號都可以註冊,流程超快),按L五次左鍵,可以贊助我的文章且完全不會花到錢!
支持創作,正向交流:)

沒有留言:

張貼留言