上次我們介紹了:MySQL簡單操作之alter table改變表的結構,今天我們介紹一下MySQL數據庫用select語句查詢表中的記錄的過程,接下來我們就一起來了解一下這部分內容。
首先我們來看一下select 語句的基本語法,基本語法如下:
注意:所有使用的關鍵詞必須精確地以上面的順序給出,例如,一個having子句必須跟在groug by子句之後和order by子句之前。
一、普通查詢
1. 檢索出表中所有的數據
mysql>select * from pet;
注: 檢索出pet表中所有的數據
2. 查詢特定的行
mysql>select * from pet where name="Bowser";
注: 檢索出pet表中, name等於"Bowser" 的這行數據
3. 查詢特定的列
select name,birth from pet where owner="Gwen";
注: 在pet表中, 選擇 owner 為"Gwen" 的那行, 只檢索出這一行的name 和 birth 兩列數據.
二、條件查詢
1. 大於/小於 條件(<,>,=)
mysql>select * from pet where age>="5";
注: 在pet表中, 檢索出age大於等於5 的所有數據
2. 組合條件(and/or)
mysql>select * from pet where age>=5 and sex="f";
注: 在pet表中, 檢索出age大於等於5並且sex為"f"的所有的數據.
mysql>select from * from pet where age >="5" or sex="f";
注: 在pet表中, 檢索出age大於等於5 或者sex為"f"的所有數據
mysql>select * from pet where (age>"5" and sex="f") or (name="tom" and sex="m");
注: 在pet表中, 檢出出 age大於5 並且sex為"f" 或者 name為"tom"並且sex為"m"的所有的數據;
三、查詢排序
格式為: order by column_name [asc/desc] [...]
注:asc表示升序, 為默認值, desc為降序. order by不能按text,text和image數據類型進行排序。
mysql>select name,birth from pet order by birth;
注:在pet表中,檢索出name和birth這兩列,並且按birth以升序排列。
mysql>select name,birth from pet order by birth desc;
注:在pet表中,檢索出name和birth這兩列,並且按birth以降序排列。
mysql>select name, age from pet order by name,birth;
注:在pet表中,檢索出name和age的這兩列的數據,並先按name來排序,後再按birth來排序。
關於MySQL數據庫用select語句查詢表中的記錄的方法就介紹到這裡了,希望本次的介紹能夠對您有所收獲!下一次我們將會介紹:MySQL簡單操作之用update和delete來修改和刪除數據。