1. 程式人生 > >條件查詢

條件查詢

nbsp cap order 邏輯運算 排序 asc like not in 是否

where字句用來過濾查詢的數據,它對字面量大小寫是敏感

1.比較運算符
>,<,=,<=,>=,!=(^=,<>)

邏輯運算符 and or 先計算and後or in(a,b,c,) =a or = b or =c

not in(a,b,c)既不是a也不是b,也不是c !=a and !=b and !=c

between and 全閉 相當於大於等於 小於等於

is null 為空 is not null 不為空

like 模糊查詢 通配符:_ 一個字符 %a% 裏面包含a的。 escape 通配符轉字符。

註意:查詢數據時條件是否為null,我們使用關鍵字is null 或者is not null ,千萬不能使用=

排序 order by 列名 asc 升序 可省略,列名 desc降序

一般語法 select from where group having order by

條件查詢