## sql語句以 " ; '" 結尾
## 不區分大小寫和空格
## 登入mysql
mysql -u kuang -p (-h hostserver -p 3306)
## 退出
exit;
## 顯示所有資料庫
show databases;
## 選擇資料庫
use sql_test;
## 顯示某個資料庫內的表
show tables;
## 顯示某個表具體列資訊
showcolumns from customers;
## 從products中檢索名為prod_name的列
select prod_name from products;
## 檢索多個列, 每個列用 ; 隔開
## 檢索所有列就用 * 來表示列
select prod_id, prod_name, prod_price from products;
select * from products;
## 檢索返回不同的值, 使用distince表示該列相同的值只取一次
select
distinct vend_id from products;
## 檢索限制結果: limit s. n; s 表示開始行, n表示最多顯示數目
select * from products limit 5,5;
## 也可以換一種: limit n offset 3
select * from products limit 4 offset 3;
## 使用order by 排序, 預設公升序
select * from products order
by vend_id;
## 找出最昂貴的物品, 列出他的記錄, 使用desc表示降序, 將輸出限制到1個
select * from products order
by prod_price desc limit 1;
----------------------過 濾 數 據---------------------------------------
## 使用where過濾資料, 找出**為2.50的記錄
select * from products where prod_price = 2.50;
## where後可加操作符: > ; < ; != ; between(兩個值之間), in(裡面寫值, 逗號隔開)
select * from products where prod_price > 2.50;
select * from products where prod_price between 2.50
and5;
## 找出**為14.99和8.99的記錄
select * from products where prod_price in(14.99, 8.99);
----------------------更 高 級 過 濾------------------------------------
## 使用and / or 連線或改變where字句條件, 與和或的關係
## 檢索出1022製造的 並且 **在10以下的記錄
select * from products where prod_price < 10.00
and vend_id = 1002;
## 檢索出1022製造的 或者 **在10以下的記錄
select * from products where prod_price <= 10.00
or vend_id = 1002;
## 注意乙個計算次序: and和or一起使用的時候記得加括號
## 檢索出1002, 1003製造的**小於等於 10的
select * from products where prod_price <= 10.00
and (vend_id = 1002
or vend_id = 1003);
## not: 用來否定後面的關鍵字, 表示乙個非, 常與in連線
## 檢索出非1002, 1003製造的商品記錄
select * from products where vend_id not
in(1002, 1003);
----------------------模 糊 查 詢--------------------------------
## 使用like關鍵字, 字元用單引號括起來, % 表示任意次數的任意字元, _ 表示一次任意字元
## 檢索出jet開頭的產品
select prod_id, prod_name from products where prod_name like
'jet%';
## 不建議過渡使用萬用字元, 注意萬用字元的位置
mysql必知必會 mysql必知必會(四)
十四 理解子查詢 1 通過子查詢過濾 這本書在所有的章節都關連到了資料庫表,訂單資料是儲存在兩個表中,orders表儲存著 訂單號碼 顧客id和訂單日期。個人的訂單列表關連著orderitems表,訂單表沒有儲存顧客資訊,它只是儲存著顧客id,這實際的顧客資訊是儲存在customers表中。現在假設...
mysql的必知必會 mysql 必知必會 筆記
好久沒有寫了。1 show columns from table 等同於describe table顯示的是表的結構。而select from table 則顯示的是整個表中插入的資料。2 select distinct c1,c2 from table除非列不相同,否則所有行將被檢索出來,即不能對...
mysql必知必會
一周了,總想寫點什麼,有的時候進步真的很難在一周顯示出來,週三的時候,我跟我的領導說,好快啊,又週三了,不知不覺,他說是啊,現在對於他來說,有時候他過一天可能跟我過一周的感覺差不多,每天都在忙,時間過的特別快,也沒有感覺做出來點什麼,當然實際肯定是怎麼做了一些東西的,是否我以後也會如此呢?說說技術把...