SQL語句 簡單查詢命令

2021-10-23 09:51:32 字數 1337 閱讀 2061

以下如果是數字型別的鍵值,就不應該加單引號。

【=】等於

select * from persons where city='beijing'

select * from 要查詢的表名 where 鍵名='鍵值'

【<>】不等於

select * from persons where city<>'beijing'

select * from 要查詢的表名 where 鍵名<>'鍵值'

【>】大於

select * from persons where citycode>110000

select * from 要查詢的表名 where 鍵名》鍵值

【between...and...】按範圍查詢

select * from iphone6 where score between 85 and 90

select * from 要查詢的表名 where 鍵名 between 鍵值的最小取值範圍 and 鍵值的最大取值範圍

【like...開頭%】以開頭查詢

select * from sysdetectitem where reaction like '採%'

select * from 要查詢的表名 where 鍵名 like '鍵值的開頭%'

【like...%結尾】以結尾查詢

select * from sysdetectitem where reaction like '%法'

select * from 要查詢的表名 where 鍵名 like '%鍵值的結尾'

【like...%鍵值的關健詞%】以關健詞查詢

select * from sysdetectitem where reaction like '%法%'

select * from 要查詢的表名 where 鍵名 like '%鍵值的關健詞%'

【order by ... asc】公升序排列

select * from iphone6 order by score asc

select * from 要查詢的表名 order by 鍵名 asc

【order by ... desc】降序排列

select * from iphone6 order by score desc

select * from 要查詢的表名 order by 鍵名 desc

【in】多鍵值查詢

select * from sysdetectitem where unit in ('mmol/l','μmol/l')

select * from 要查詢的表名 where 鍵名 in ('鍵值1','鍵值2')

SQL語句(七)簡單查詢

簡單資訊查詢 例1 查詢所有學生的資訊 學生 student 所有學生 不限定班級 性別 年齡等條件 所有資訊 所有字段,select from student 例2 查詢指定字段 查詢 班級 學號和姓名資訊 select sclass,snumb,sname from student 查詢有哪些班...

SQL語句的簡單查詢

一 sql 是結構化查詢語言,這種語言在rdbms 關係型資料庫管理系統 中使用,oracle,sqlserver,mysql都在使用sql。分為5類 dql 資料查詢語言,select dml 資料操作語言,insert,update,delete tpl 事務處理語言,commit,rollba...

SQL語句(七)簡單查詢

簡單資訊查詢 例1 查詢所有學生的資訊 學生 student 所有學生 不限定班級 性別 年齡等條件 所有資訊 所有字段,select from student 例2 查詢指定字段 查詢 班級 學號和姓名資訊 select sclass,snumb,sname from student 查詢有哪些班...