IBM DB2 日常維護彙總(九)

2022-09-21 01:09:10 字數 1560 閱讀 6468

正在看的db2教程是:ibm db2 日常維護彙總(九)。  167.repeatrmjry(exp1,exp2)

返回exp1重複exp2次後的字串.

selectchar(repeat('repeat',3),21)frombsempms;

168.real()

返回乙個數值的單精度浮點數表示.

selectreal(10)frombsempms;

169.rand()程式設計客棧

返回0和1之間的隨機浮點數.

selectrand()frombsempms;

170.power(exp1,exp2)

返回exp1的exp2次冪.

selectpower(2,5)frombsempms;

171.posstr(exp1,exp2)

返回exp2在exp1中的位置.

select('abcdefgh','d')frombsempms;

172.nullif(exp1,exp2)

如果exp1=exp2,則為null,否則為exp1

173.nodenumber()

返回行的分割槽號.

selectnodenumber(emp_no)frombsempms;

174.month()

返回乙個數值的月部分.

selectmonth('2003/10/20')frombsempms;

175.mod(exp1,exp2)

返回exp1除以exp2的餘數.

selectmod(20,8)frombsempms;

176.minute()

返回乙個數值的分鐘部分.

selectminute('18:34:23')frombsempms程式設計客棧;

177.ltrim()

刪除字串前面的空格.

selectltrim('cddd')frombsempms;

178.hour()

返回乙個數值的小時部分.

selecthour(rmjry'18:34:23')frombsempms;

179.double()

如果引數是乙個數字表示式,返回與其相對應的浮點數,如果引數是字串表示式,則返回該數的字串表示式.

selectdouble('5678')frombsempms;

180.exp()

返回引數的指數函式.

selectexp(2)frombsempms;

181.float()

返回乙個數的浮點表示.

selectfloat(789)frombsempms;

182.floor

返回小於或等於引數的最大整數.

slectfloor(88.93)frombsempms;

183.hex()

返回乙個表示為字串的值的16進製表示.

selecthex(16)frombsempms;

<

本文標題: ibm db2 日常維護彙總(九)

本文位址:

IBM DB2 日常維護彙總

10.aix下用哪個命令來安裝db2?installp命令 11.同一作業系統下可以安裝多個db2資料庫?可以的 12.如何停止例項?db2stop 13.如何啟動例項?db2start 14.如何修改註冊項的值?db2set可以修改 如 設定當前例項的乙個引數 db2setparameter va...

IBM DB2 日常維護彙總(八)

正在看的db2教程是 ibm db2 日常維護彙總 八 154.concat 返回兩個字串的連線.selectconcat emp程式設計客棧 no,emp nam frombsempms 155.year 返回數值的年部分.selectyear 2003 01 02 fromb 156.varch...

IBM DB2日常應用彙總(五)

151.ceiling orceil 返回比引數大或等於引數的最小的整數值.selectceiling 3.56 frombsempms selectceil 4.67 frombsempms 152.char 返回日期時間型,字串,整數,十進位制或雙精度浮點數的字串表示.selectchar sa...