IBM DB2日常應用彙總(五)

2022-01-28 23:18:24 字數 3018 閱讀 5576

151.ceiling()orceil()

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

selectceiling(3.56)frombsempms;

selectceil(4.67)frombsempms;

152.char()

返回日期時間型,字串,整數,十進位制或雙精度浮點數的字串表示.

selectchar(salary,',')frombsempms;

153.chr()

返回具有由引數指定的ascii碼的字元.

selectchar(167)frombsempms;

154.concat()

返回兩個字串的連線.

selectconcat(emp_no,emp_nam)frombsempms;

155.year()

返回數值的年部分.

selectyear('2003/01/02')frombsempms;

156.varchar()

返回字串,日期型,圖形串的可變長度的字串表示.

selectvarchar(emp_nam,50)frombsempms;

157.ucase()orupper()

返回字串的大寫.

selectucase(emp_nam)frombsempms;

selectupper(emp_no)frombsempms;

158.truncate()ortrunc()

從表示式小數點右邊的位置開始截斷並返回該數值.

selecttruncate(345.6789,2)frombsempms;

159.time()

返回乙個數值中的時間.

selecttime('2001-03-19.12.30.123456')frombsempms;

160.substr(exp1,exp2)

返回exp1串自exp2處開始的子串.

selectsubstr('cdnjfdjfjd',5)frombsempms;

selectsubstr('cdnjfdjfjd',5,2)frombsempms;

161.sqrt()

返回該引數的平方根.

selectsqrt(36)frombsempms;

162.space()

返回由引數指定的長度,包含空格在內的字串.

selectspace(10)frombsempms;

163.second()

返回乙個數值的秒部分.

selectsecond('18:34:32')frombsempms;

164.rtrim()

刪除字串尾部的空格.

selectrtrim('comment')frombsempms;

165.round(exp1,exp2)

返回exp1小數點右邊的第exp2位置處開始的四捨五入值.

selectround(2345.6789,2)frombsempms;

166.replace(exp1,exp2,exp3)

用exp3替代exp1中所有的exp2

selectchar(replace('romandd','ndd','ccb'),10)frombsempms;

167.repeat(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('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 日常維護彙總

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

IBM DB2 日常維護彙總(九)

正在看的db2教程是 ibm db2 日常維護彙總 九 167.repeatrmjry exp1,exp2 返回exp1重複exp2次後的字串.selectchar repeat repeat 3 21 frombsempms 168.real 返回乙個數值的單精度浮點數表示.selectreal ...

IBM DB2 日常維護彙總(八)

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