oracle bitand( )函式在oracle資料庫中是很常見的,下面就為您詳細介紹oracle bitand( )函式的用法,如果您感興趣的話,不妨一看。
oracle bitand( )函式:
返回兩個數值型數值在按位進行and 運算後的結果。
語法bitand(nexpression1, nexpression2)
引數nexpression1, nexpression2
指定按位進行and 運算的兩個數值。如果 nexpression1 和 nexpression2 為非整數型,那麼它們在按位進行 and 運算之前轉換為整數。
oracle bitand( )函式返回值型別:
數值型
說明bitand( ) 將 nexpression1 的每一位同 nexpression2 的相應位進行比較。如果 nexpression1 和 nexpression2 的位都是 1,相應的結果位就是 1;否則相應的結果位是 0。
下表列出對 nexpression1 和 nexpression2 按位進行 and 運算的結果:
nexpression1 位 nexpression2 位 結果位
0 0 0
0 1 0
1 1 1
1 0 0
bitand( ) 函式示例
x = 5&& 二進位制為 0101
y = 6&& 二進位制為 0110
? bitand(x,y) && 返回值 4,二進位制為 0100
strtok函式簡析
官方的strtok函式,用來通過分隔字元 不支援字串,傳入的串中每個字元單獨當分隔符,如下例子組合的如123會處理1而23會被跳過 返回分隔的串的首位址 比如呼叫strtok abc123def 123456 返回值是指向abc的指標 下次要獲得 def 需要呼叫strtok null,123456...
iOS main函式簡析
如同任何基於c的應用程式,程式啟動的主入口點為ios應用程式的main函式。在ios應用程式,main函式的作用是很少的。它的主要工作是控制uikit framework。因此,你在xcode中建立任何新的專案都配備了乙個預設的主函式。除了少數特例外,你永遠不應該改變這個函式的實現。1 import...
over partition by 開窗函式簡介
簡單舉例 select code,kpi type,plan value num,row number over partition by code,kpi type order by plan value num desc rowno from fs target yp kpi 分析 code,k...