SQL數據庫第四章

SELECT定製查詢

1.算術運算符spa

 select num+1,num-2,num%3,num*3,num/3 from 數據表名code

 比較運算符blog

 

  邏輯運算符排序

 

 

 當not. and和or出如今同一表達式中時,優先級是not>and>or。class

條件查詢中的運算符select

單條件查詢語法

select * from 表名 where 條件im

多條件查詢d3

select * from 表名 where 條件 or 條件數據

 

 

2.定製顯示查詢結果

2)1.查詢結果排序(order by)

 

 

 2)2.使用TOP限制查詢結果數量

語法:select top N 條件 from 表名

 

 

 

 2)3.like運算符

1.'%'通配符

 

2.'-'通配符

select Name ,birthday from kehu2 where name like '張__' ---以張字開頭的

select Name , birthday from kehu2 where name like '_張_'

‘_’與‘%’綜合使用

select name,birthday from kehu2 where name like '_三%'--名字中第二個字爲三的

3.'[]'通配符

select * from dingdan2 where Khnum like [1-3]/*在1到3的*/
select * from dingdan2 where Khnum like  [12435]' /*另外一-種寫法*/

4.in和between  and 運算符

相關文章
相關標籤/搜索