下面我們來看一下比較運算子和函式
1、[not] between…and… [不]在範圍之內
比如我們輸入select 2 between 1 and 3;
結果是1,也就是表示是,我們再輸入select 1 between 2 and 3;
返回的是0,就表示不在裡邊。
我們再輸入select 2 between 2 and 3;
我們發現結果也是1,說明這裡指的是閉合區間,當然我們還可以加上not來判斷,這些都是很簡單的。
2、[not] in() [不]在列出值範圍內
比如我們輸入select 1 in(1,2,3,4);肯定是在的。
結果肯定是1,這個是很簡單的。
3、is [not] null [不]為空
比如我們輸入select null is null;
我們發現結果是1,我們再輸入select 『』 is null;
我們發現答案就是0.那麼is null到底是用在**呢,我們先來查一下user表的資料,我們輸入select * from user;
我們看到***欄位裡有空值,那麼我們就輸入select * from user where *** is null;
我們發現***為空的這兩條記錄就查詢出來了,那麼is not null你可以自己 驗證一下。
5 算術運算子和比較運算子
select product name,sale price,sale price 2 as sale price x2 from product 運算是以行為單位執行的 法則2 6 select子句中可以使用常數或者表示式 所有包含null的計算,結果肯定是null 通常情況下,類似5 0這樣除數...
js 算術運算子和比較運算子
自增1 自減單獨使用的 字首和字尾都是自增自減,沒有什麼特別卻別 和其他表示式一起使用是,作為字首,先自增自減,再做其他操作 作為字尾,先做其他操作再自增自減 var num 5 num 相當於 num num 1 console.log num 4 num console.log num 5 nu...
賦值運算子 比較運算子 和邏輯運算子
基本賦值運算子就是乙個符號 代表將左邊的資料交給左側的變數。int a 30 符合復合賦值運算子 a 3 相當於 a a 3 b 4 相當於 b b 4 c 5 相當於 c c 5 d 6 相當於 d d 6 7 7 相當於 e 7 7 int a 10 a 5 system.out.println...