freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

cognos報(bào)表數(shù)據(jù)項(xiàng)表達(dá)式函數(shù)的應(yīng)用-資料下載頁(yè)

2025-06-30 16:41本頁(yè)面
  

【正文】 xp )作用:使用string_exp指定的格式截取date_exp。例如,如果string_exp為”YEAR”,則date_exp將被截取至該年份的第一天。Example:TRUNC(TO_DATE(39。2006110839。,39。yyyymmdd39。), 39。mm39。)結(jié)果為:2006111 trunc用法:trunc ( numeric_exp1, numeric_exp2 )作用:將numeric_exp2作為精度來截取numeric_exp1中的數(shù)位。Example:TRUNC(,1) 結(jié)果為:TRUNC(,1) 結(jié)果為:10 vsize用法:vsize ( exp )作用:返回”exp”內(nèi)部表示法的字節(jié)數(shù)?!眅xp”應(yīng)為字符串表達(dá)式。Example:VSIZE (39。last_name39。)結(jié)果為:9 {sysdate}用法:{ sysdate }作用:返回運(yùn)行數(shù)據(jù)庫(kù)軟件的計(jì)算機(jī)上的當(dāng)前日期和時(shí)間。 {user}用法:{user}作用:返回當(dāng)前oracle用戶的用戶名。6 Oracle Cast函數(shù) cast_varchar用法:cast_varchar ( exp )作用:返回表達(dá)式在轉(zhuǎn)換成varchar型之后的值。exp的類型可為數(shù)字、日期或時(shí)間戳。Example:cast_varchar (321,637,)結(jié)果為:321,637,(字符型) cast_timestamp用法:cast_timestamp ( exp )作用:返回表達(dá)式在轉(zhuǎn)換成時(shí)間戳型之后的值。Exp的類型可為字符串或日期。例如,cast_timestamp (‘19991231 23:59:’).7 Oracle數(shù)學(xué)函數(shù) Log用法:log ( numeric_exp1, numeric_exp2 )作用:返回以numeric_exp1為底數(shù)的numeric_exp2的對(duì)數(shù)。Example:LOG(10,100)結(jié)果為:28 Oracle三角函數(shù) acos用法:acos ( numeric_exp )作用:返回numeric_exp的反余弦值,用弧度表示。反余弦值是余弦值為numeric_exp的角度。Example:ACOS()結(jié)果為: asin用法:asin ( numeric_exp )作用:返回numeric_exp的反正弦值,用弧度表示。反正弦值是正弦值為numeric_exp的角度。Example:Asin()結(jié)果為: atan用法:atan ( numeric_exp )作用:返回numeric_exp的反正切值,用弧度表示。反正切值是正切值為numeric_exp的角度。Example:Atan()結(jié)果為: atan2用法:atan2 ( numeric_exp1 ,numeric_exp2 )作用:返回分別由numeric_exp1和numeric_exp2指定的x坐標(biāo)和y坐標(biāo)的反正切值,用弧度表示。反正切值是正切值為numeric_exp2/numeric_exp1的角度。Example:Atan2(,)結(jié)果為: cos用法:cos (numeric_exp)作用:返回numeric_exp的余弦值,其中numeric_exp是用弧度表示的角度。Example:cos()結(jié)果為: cosh用法:cosh ( numeric_exp )作用:返回numeric_exp的雙曲線余弦值,其中numeric_exp是用弧度表示的角度。Example:cosh()結(jié)果為: sin用法:sin ( numeric_exp )作用:返回numeric_exp的正弦值,其中numeric_exp是用弧度表示的角度。Example:sin()結(jié)果為: sinh用法:sinh ( numeric_exp )作用:返回numeric_exp的雙曲線正弦值,其中numeric_exp是用弧度表示的角度。Example:sinh()結(jié)果為: tan用法:tan ( numeric_exp )作用:返回numeric_exp的正切值,其中numeric_exp是用弧度表示的角度。Example:tan()結(jié)果為: tanh用法:tanh ( numeric_exp )作用:返回numeric_exp的雙曲線正切值,其中numeric_exp是用弧度表示的角度。Example:tanh()結(jié)果為:9 通用函數(shù) _format用法:_format ( expr , keyword )作用:將格式與表達(dá)式關(guān)聯(lián)。關(guān)鍵字可以是PERCENTAGE_0, PERCENTAGE_1或PERCENTAGE_2。Example:_format(,PERCENTAGE_1)結(jié)果為:12,% _round用法:_round ( numeric_exp, integer_exp )作用:返回精確到小數(shù)點(diǎn)右側(cè)integer_exp位的數(shù)字表達(dá)式。注:integer_exp必須為非負(fù)整數(shù)。Example:_round ( , 2 )結(jié)果為: abs用法:abs ( numeric_exp )作用:返回numeric_exp的絕對(duì)值。負(fù)值的符號(hào)會(huì)改為正號(hào)。Example:abs ( 15 ) 結(jié)果為:15abs ( 15 ) 結(jié)果為:15 cast用法:cast ( expression, datatype_specification )作用:將表達(dá)式轉(zhuǎn)換為指定的數(shù)據(jù)類型。某些數(shù)據(jù)類型允許指定長(zhǎng)度和精度。確保目標(biāo)的類型和大小適當(dāng)。Example:cast ( 39。12339。 , integer ) 結(jié)果為:123cast ( 12345 , VARCHAR ( 10 ) ) 結(jié)果為:12345(字符串) ceiling用法:ceiling ( numeric_exp )作用:返回大于或等于numeric_exp的最小整數(shù)。Example:ceiling ( ) 結(jié)果為:5ceiling ( ) 結(jié)果為:1 character_length用法:character_length ( string_exp )作用:返回string_exp包含的字符數(shù)。Example:character_length ( 39。Canada39。 )結(jié)果為:6 coalesce用法:coalesce ( exp_list )作用:返回第一個(gè)非空參數(shù)(或者如果所有參數(shù)都為空,則返回空參數(shù))。Coalesce函數(shù)需要兩個(gè)或更多個(gè)參數(shù)。Example:coalesce(123,124,234,1234)結(jié)果為:123 current_date用法:current_date作用:返回運(yùn)行數(shù)據(jù)庫(kù)軟件的計(jì)算機(jī)上的當(dāng)前日期。Example:current_date 結(jié)果為:2006119 current_time用法:current_time作用:返回帶有時(shí)區(qū)值的時(shí)間,它表示運(yùn)行數(shù)據(jù)庫(kù)軟件的計(jì)算機(jī)的當(dāng)前時(shí)間。Example:current_time 結(jié)果為:上午10:03: GMT+08:00 current_timestamp用法:current_timestamp作用:返回帶有時(shí)區(qū)值的日期時(shí)間,它表示運(yùn)行數(shù)據(jù)庫(kù)軟件的計(jì)算機(jī)的當(dāng)前時(shí)間戳。Example:current_timestamp結(jié)果為:2006119 上午10:02: GMT+08:00 exp用法:exp ( numeric_exp )作用:返回e的numeric_exp次冪。常數(shù)e是自然對(duì)數(shù)的底數(shù)。另請(qǐng)參見log。Example:exp(3)結(jié)果為: extract用法:extract ( datepart , datetime_exp )作用:返回一個(gè)整數(shù),表示datetime_exp中的日期部分值(年、月、日、時(shí)、分和秒)。Example:extract ( year , 20030303 16:40: ) 結(jié)果為:2003extract ( hour , 20030303 16:40: ) 結(jié)果為:16 floor用法:floor ( numeric_exp )作用:返回小于或等于numeric_exp的最大整數(shù)。Example:floor ( ) 結(jié)果為:3floor ( ) 結(jié)果為:2 ln用法:ln ( numeric_exp )作用:返回numeric_exp的自然對(duì)數(shù)。Example:ln(5)結(jié)果為: localtime用法:localtime作用:返回一個(gè)時(shí)間值,表示運(yùn)行數(shù)據(jù)庫(kù)軟件的計(jì)算機(jī)的當(dāng)前時(shí)間。Example:localtime結(jié)果為:上午10:05:58 localtimestamp用法:localtimestamp作用:返回一個(gè)日期時(shí)間值,表示運(yùn)行數(shù)據(jù)庫(kù)軟件的計(jì)算機(jī)的當(dāng)前時(shí)間戳。Example:Localtimestamp結(jié)果為:20061110 上午10:08:06 lower用法:lower ( string_exp )作用:返回已將所有大寫字符轉(zhuǎn)換為小寫字符的string_exp。Example:lower ( 39。ABCDEF39。 )結(jié)果為:39。abcdef39。 mod用法:mod ( integer_exp1, integer_exp2 )作用:返回integer_exp1除以integer_exp2所得的余數(shù)(模數(shù))。integer_exp2不能為零,否則會(huì)出現(xiàn)異常情況。Example:mod ( 20 , 3 )結(jié)果為:2 octet_length用法:octet_length ( string_exp )作用:返回string_exp包含的字節(jié)數(shù)。Example:octet_length ( 39。ABCDEF39。 )結(jié)果為:12 position用法:position ( string_exp , string_exp )作用:返回一個(gè)整值,表示第一個(gè)string_exp在第二個(gè)string_exp中的位置,或者在未找到第一個(gè)string_exp時(shí)返回零。Example:position ( 39。C39。 , 39。ABCDEF39。 ) 結(jié)果為:3position ( 39。H39。 , 39。ABCDEF39。 ) 結(jié)果為:0 power用法:power ( numeric_exp1, numeric_exp2 )作用:返回numeric_exp1的numeric_exp2次冪。如果numeric_exp1是負(fù)數(shù),則numeric_exp2的結(jié)果必須為整數(shù)值。Example:power ( 3 , 2 ) 結(jié)果為:9 sqrt用法:sqrt ( numeric_exp )作用:返回numeric_exp的平方根。numeric_exp必須是非負(fù)數(shù)。Example:sqrt ( 9 ) 結(jié)果為:3 substring用法:substring ( string_exp , integer_exp1 [ , integer_exp2 ] )作用:返回string_exp的子字符串。該子字符串從integer_exp1位置開始連續(xù)integer_exp2個(gè)字符或者到string_exp的末尾(如果未指定integer_exp2)。string_exp中的第一個(gè)字符處在位置1。Example:substring ( 39。abdefg39。, 3, 2) 結(jié)果為:’de’ trim用法:trim ( [ [ TRAILING | LEADING | BOTH ] [ match_character_exp ] , ] string_exp )作用:返回截去開頭和/或尾隨空格的string_exp,或者返回截去match_character_exp指定的某些字符的string_exp。如果未指定第一個(gè)自變量,則默認(rèn)為BOTH,如果未指定第二個(gè)自變量,則默認(rèn)為空白。Example:trim ( TRAILING 39。A39。 , 39。ABCDEFA39。 ) 結(jié)果為:39。ABCDEF39。trim ( BOTH, 39。 ABCDEF 39。 ) 結(jié)果為:39。ABCDEF39。 upper用法:upper ( string_exp )作用:返回已將所有小寫字符轉(zhuǎn)化為大寫字符的string_expExample:upper ( 39。abcdef39。 ) 結(jié)果為:39。ABCDEF39。
點(diǎn)擊復(fù)制文檔內(nèi)容
教學(xué)課件相關(guān)推薦
文庫(kù)吧 www.dybbs8.com
備案圖鄂ICP備17016276號(hào)-1