数学函数
1.绝对值
S:select abs(-1) value
O:select abs(-1) value from dual
2.取整(大)
S:select ceiling(-1.001) value
O:select ceil(-1.001) value from dual
3.取整(小)
S:select floor(-1.001) value
O:select floor(-1.001) value from dual
4.取整(截取)
S:select cast(-1.002 as int) value
O:select trunc(-1.002) value from dual
5.四舍五入
S:select round(1.23456,4) value 1.23460
O:select round(1.23456,4) value from dual 1.2346
6.e为底的幂
S:select Exp(1) value 2.7182818284590451
O:select Exp(1) value from dual 2.71828182
7.取e为底的对数
S:select log(2.7182818284590451) value 1
O:select ln(2.7182818284590451) value from dual; 1
8.取10为底对数
S:select log10(10) value 1
O:select log(10,10) value from dual; 1
9.取平方
S:select SQUARE(4) value 16
O:select power(4,2) value from dual 16
10.取平方根
S:select SQRT(4) value 2
O:select SQRT(4) value from dual 2
11.求任意数为底的幂
S:select power(3,4) value 81
O:select power(3,4) value from dual 81
12.取随机数
S:select rand() value
O:select sys.dbms_random.value(0,1) value from dual;
13.取符号
S:select sign(-8) value -1
O:select sign(-8) value from dual -1
----------数学函数
14.圆周率
S:SELECT PI() value 3.1415926535897931
O:不知道
15.sin,cos,tan 参数都以弧度为单位
例如:select sin(PI()/2) value 得到1(SQLServer)
16.Asin,Acos,Atan,Atan2 返回弧度
17.弧度角度互换(SQLServer,Oracle不知道)
DEGREES:弧度-〉角度
RADIANS:角度-〉弧度
---------数值间比较
18. 求集合最大值
S:select max(value) value from
(select 1 value
union
select -2 value
union
select 4 value
union
select 3 value)a
O:select greatest(1,-2,4,3) value from dual
19. 求集合最小值
S:select min(value) value from
(select 1 value
union
select -2 value
union
select 4 value
union
select 3 value)a
O:select least(1,-2,4,3) value from dual
20.如何处理null值(F2中的null以10代替)
S:select F1,IsNull(F2,10) value from Tbl
O:select F1,nvl(F2,10) value from Tbl
--------数值间比较
21.求字符序号
S:select ascii('a') value
O:select ascii('a') value from dual
22.从序号求字符
S:select char(97) value
O:select chr(97) value from dual
23.连接
S:select '11'+'22'+'33' value
O:select CONCAT('11','22')||33 value from dual
23.子串位置 --返回3
S:select CHARINDEX('s','sdsq',2) value
O:select INSTR('sdsq','s',2) value from dual
23.模糊子串的位置 --返回2,参数去掉中间%则返回7
S:select patindex('%d%q%','sdsfasdqe') value
O:oracle没发现,但是instr可以通过第四霾问?刂瞥鱿执问?BR> select INSTR('sdsfasdqe','sd',1,2) value from dual 返回6
24.求子串
S:select substring('abcd',2,2) value
O:select substr('abcd',2,2) value from dual
25.子串代替 返回aijklmnef
S:SELECT STUFF('abcdef', 2, 3, 'ijklmn') value
O:SELECT Replace('abcdef', 'bcd', 'ijklmn') value from dual
26.子串全部替换
S:没发现
O:select Translate('fasdbfasegas','fa','我' ) value from dual
27.长度
S:len,datalength
O:length
28.大小写转换 lower,upper
29.单词首字母大写
S:没发现
O:select INITCAP('abcd dsaf df') value from dual
30.左补空格(LPAD的第一个参数为空格则同space函数)
S:select space(10)+'abcd' value
O:select LPAD('abcd',14) value from dual
31.右补空格(RPAD的第一个参数为空格则同space函数)
S:select 'abcd'+space(10) value
O:select RPAD('abcd',14) value from dual
32.删除空格
S:ltrim,rtrim
O:ltrim,rtrim,trim
33. 重复字符串
S:select REPLICATE('abcd',2) value
O:没发现
34.发音相似性比较(这两个单词返回值一样,发音相同)
S:SELECT SOUNDEX ('Smith'), SOUNDEX ('Smythe')
O:SELECT SOUNDEX ('Smith'), SOUNDEX ('Smythe') from dual
SQLServer中用SELECT DIFFERENCE('Smithers', 'Smythers') 比较soundex的差
返回0-4,4为同音,1最高
--------------日期函数
35.系统时间
S:select getdate() value
O:select sysdate value from dual
36.前后几日
直接与整数相加减
37.求日期
S:select convert(char(10),getdate(),20) value
O:select trunc(sysdate) value from dual
select to_char(sysdate,'yyyy-mm-dd') value from dual
38.求时间
S:select convert(char(8),getdate(),108) value
O:select to_char(sysdate,'hh24:mm:ss') value from dual
39.取日期时间的其他部分
S:DATEPART 和 DATENAME 函数 (第一个参数决定)
O:to_char函数 第二个参数决定
参数---------------------------------下表需要补充
year yy, yyyy
quarter qq, q (季度)
month mm, m (m O无效)
dayofyear dy, y (O表星期)
day dd, d (d O无效)
week wk, ww (wk O无效)
weekday dw (O不清楚)
Hour hh,hh12,hh24 (hh12,hh24 S无效)
minute mi, n (n O无效)
second ss, s (s O无效)
millisecond ms (O无效)
----------------------------------------------
40.当月最后一天
S:不知道
O:select LAST_DAY(sysdate) value from dual
41.本星期的某一天(比如星期日)
S:不知道
O:SELECT Next_day(sysdate,7) vaule FROM DUAL;
42.字符串转时间
S:可以直接转或者select cast('2004-09-08'as datetime) value
O:SELECT To_date('2004-01-05 22:09:38','yyyy-mm-dd hh24-mi-ss') vaule FROM DUAL;
43.求两日期某一部分的差(比如秒)
S:select datediff(ss,getdate(),getdate()+12.3) value
O:直接用两个日期相减(比如d1-d2=12.3)
SELECT (d1-d2)*24*60*60 vaule FROM DUAL;
44.根据差值求新的日期(比如分钟)
S:select dateadd(mi,8,getdate()) value
O:SELECT sysdate+8/60/24 vaule FROM DUAL;
45.求不同时区时间
S:不知道
O:SELECT New_time(sysdate,'ydt','gmt' ) vaule FROM DUAL;
-----时区参数,北京在东8区应该是Ydt-------
AST ADT 大西洋标准时间
BST BDT 白令海标准时间
CST CDT 中部标准时间
EST EDT 东部标准时间
GMT 格林尼治标准时间
HST HDT 阿拉斯加--夏威夷标准时间
MST MDT 山区标准时间
NST 纽芬兰标准时间
PST PDT 太平洋标准时间
YST YDT YUKON标准时间
81.202.184.* 于 2007-06-12 02:50:13发表:
d8383e00ab00b16bfb9b1fdd4333eace http://allergia-uomo-al-muco-vaginale.ljiwrk.org/ http://la-vergine-delle-rocce-di-leonardo.uoyrgt.org/ http://sexy-immagine-full-metal-panic.fkgkox.org/ http://quiz-ministeriali-patente-di-g.cckzfi.org/ http://gfc-intranet-gruppo-fondiaria-it.dtufrq.org/ http://colonna-sonora-kill-bill-vol.dtufrq.org/ http://come-prima-meglio-di-prima.dtufrq.org/ http://viaggio-capodanno-cenone-single-sicilia.guqsuy.org/ http://cinese-lingua-distanza-studio-videocassetta.hzuhtu.org/ http://ristorante-taranto-provincia-cenone-capodanno.guqsuy.org/ 3ebbdc0c5c788c89d957115fc277340d
81.172.127.* 于 2007-06-11 02:53:31发表:
afd46df53e4746991301e2beb8b09646 http://internazionali-di-tennis-a-roma.innltr.net.in/ http://fax-simile-memoria-183-c-5.kfxrfs.net.in/ http://prescrizione-obbligazione-provincia-buenos-aires.kfxrfs.net.in/ http://migliore-centro-cura-mieloma-multiplo.kfxrfs.net.in/ http://fringe-benefit-auto-aziendale-uso-promiscuo.kfxrfs.net.in/ http://scuola-alberghiera-ponte-i-legno.mksqkw.net.in/ http://leggenda-indiano-d-america-amicizia.ooqqld.net.in/ http://lingua-italiana-programma-ministeriale-scuola-materna.innltr.net.in/ http://costo-costruzione-casa-al-m2.innltr.net.in/ http://arte-e-gioco-in-mostra.dtifhu.net.in/ 319dbbb4ab069a1bfb4a4d4d12c61dcd
65.94.176.* 于 2007-06-09 02:53:56发表:
654ab0ec59554c12bf6d5dde5ba3f8e5 http://scaricare-gratis-musica-mp3-natale.iumzde.org/ http://case-vendita-lago-d-orta.lbpwqo.org/ http://programma-test-connessione-adsl-verifica.iumzde.org/ http://truchi-soluzione-gioco-pc-gratis.lbpwqo.org/ http://datemi-tre-caravelle-alessandro-preziosi.mbxbva.org/ http://filmato-trailer-devil-may-cry-3.hwqegr.org/ http://scheda-libro-primo-levi-tregua.hwqegr.org/ http://legge-finanziaria-2007-comma-245.akermn.org/ http://3com-switch-16-porta-10-100.mbxbva.org/ http://natale-storia-nascita-gesu-sito-bambino.hwqegr.org/ e44c2d91c99facb894d3b26e91151560
201.245.235.* 于 2007-06-08 04:20:03发表:
1a453600b429e84864f1c213473518c4 http://mercatino-santo-stefano-napoli-provincia.sjfnnx.org/ http://trucco-dragon-ball-shin-budokai-psp.lykglu.org/ http://unison-research-unico-p-prova.rpddkk.org/ http://lavatrice-carica-alto-600-giri.bzeitz.org/ http://costo-dela-stampante-epson-r300.fjhozm.org/ http://rilievo-architettonico-tecnica-planimetrico-strumento.ouwnql.org/ http://soluzione-silent-hill-3-pc.fjhozm.org/ http://video-goal-taddei-roma-cagliari.lykglu.org/ http://convertitore-file-audio-wma-mp3.ouwnql.org/ http://azienda-flat-flessibilita-dell-organizzazione-aziendale.yixkrt.org/ 2e2f8656ca7971267ae7180fc612fe21
190.32.61.* 于 2007-06-07 07:03:13发表:
614fb0fc9a4b9aef20e6e6c72b16f314 http://impresa-costruzione-casa-pesaro-fano.ytqkdb.info/ http://edizione-giove-corriere-dell-umbria.ytqkdb.info/ http://stampi-di-plastica-da-caccia.vkzwxs.info/ http://sharon-stone-basic-istint-2.rwikgt.info/ http://monitor-sony-21-pollici-crt.dpydtd.info/ http://opera-legno-pregiato-vincenzo-pandolfi.zjtbra.info/ http://eroica-morte-cabria-cornelio-nepote.hwqovr.info/ http://cerco-direttore-tecnico-agenzia-viaggio.ciymwb.info/ http://corsi-di-lingua-in-francia.hwqovr.info/ http://convertire-da-dvd-a-mpeg.urajxu.info/ 6dea66dd0952ca77d762129bda0df247
190.49.217.* 于 2007-06-06 10:04:02发表:
b3e658c0b191bdc8501ede0084f4c407 http://biglietto-augurio-compleanno-da-colorare.qirjux.info/ http://scuola-elementare-campione-d-italia.qwoucn.info/ http://segretaria-calza-gonna-foto-gratis.qirjux.info/ http://master-selezione-risorsa-umana-bologna.lbvsgo.info/ http://aiuto-digital-mp4-player-cinese.qwoucn.info/ http://forza-chiara-perugia-video-hot.lbvsgo.info/ http://sagem-my-c-52-v.lbvsgo.info/ http://natola-leonardo-c-milano-marittima.jknrtq.info/ http://augurio-buon-natale-dialetto-siciliano.qirjux.info/ http://formazione-italia-mondiale-calcio-1982.lbvsgo.info/ 11bac96dbb32ab2fd1a6f4018c996a56
201.235.229.* 于 2007-06-05 15:06:11发表:
7b2ae0ea5c5be878a83a7e025a4434c5 http://scheda-film-c-r-z-y.boixkk.info/ http://gabry-47-edi.boixkk.info/ http://telefono-celulari-lg.kbucdn.info/ http://scarpiera-multipla.boixkk.info/ http://varsavia-dong-nam.dvtuzm.info/ http://giulianoromano-it-ecdl.fwpjkf.info/ http://taglierina-lama-fissa.boixkk.info/ http://cheope-fabio-serra.boixkk.info/ http://idro-montanelli.boixkk.info/ http://programma-allenamento-ciclosimulatore.dhvvfi.info/ 4080af707aca2bbb96231fb1b4743d28
62.57.25.* 于 2007-06-04 20:32:20发表:
789295a4435b110e6f747e77405a8cf1 http://6-marzo-1978-n-218.pgbdyc.org/ http://istituto-tecnico-commerciale-zappa-milano.nfvzoo.org/ http://corso-oss-disoccupato-napoli-provincia.dqiqbg.org/ http://giudice-di-pace-di-mantova.xcwjal.org/ http://sapienza-roma-psicologia-ance-interprete.dqiqbg.org/ http://cassa-home-theatre-5-1.pgbdyc.org/ http://spese-straordinaria-deliberate-ante-vendita.divuvu.org/ http://rimedio-ansia-agitazione-sbalzi-umore.pgbdyc.org/ http://scuola-alberghiera-orio-vergani-ferrara.vprmbs.org/ http://garmin-com-unlockregister-register-jsp.pgbdyc.org/ e2344a7b53a49ae4d6fdb2a64dbf9945
190.31.50.* 于 2007-06-04 00:51:52发表:
4224002e528d8738c67a60eea4947a9c http://mummiesilenzionenellalto.seyzuo.org/kart-hinterland-milanese/index.htm http://nuovocoloresh125i.nlamku.org/fautore-perestroika-1980/index.htm http://notecamsmrt.akqcvy.org/calzatura-anfibie/index.htm http://rilevatorepresenzacrepuscolare.beajbg.org/carta-termotrasferibile-tessuto/index.htm http://sitewebcartolinaanticamarinacamerota.akqcvy.org/b-maglificio-morgano-b/index.htm http://diagrammapsicrometricoexcel.akqcvy.org/tabellini-ufficiale-partita-fifa/index.htm http://parallelismoflangemacchinarotanti.inkrxe.org/olivo-dordi/index.htm http://selfcareliberoitpassword.seyzuo.org/giorno-dellabbandono-regia/index.htm http://prezzosaecocaffc3a8.inkrxe.org/elenco-personale-ata-3a-fascia-ravenna/index.htm http://tritacarneamb.seyzuo.org/gattile-torino-micini-com/index.htm 83869c431dabc6ba13fe3e3c64cc8ac5
201.250.242.* 于 2007-06-03 07:00:33发表:
b775577f8ca8b3d71251eb61c9a8856f http://lavorofuturogelpilibro.bdizoa.org/hanry-jackman/index.htm http://pistolaelettrostaticheverniciaturapolveri.lskson.org/usai-emilia-ersu/index.htm http://94circolodidatticomontesacro.bdizoa.org/newform-rubinetterie/index.htm http://braccialettomanetta.bdizoa.org/plug-rj45-fanton/index.htm http://galdibrunotiscali.shxghd.org/dimenzione-danza-it/index.htm http://machinavaporizzazioneaspirazione.sdibjo.org/grabiel-garko/index.htm http://golosarhopasticceria.bdizoa.org/sfondo-dragon-ball-fusioni-impossibili/index.htm http://videocitofonovivavoce.sdibjo.org/sorriso-ristorante-vimodrone/index.htm http://pistolaelettrostaticheverniciaturapolveri.lskson.org/porno-video-donna-animli/index.htm http://incontraredonnasessoi.lskson.org/filanda-roccalumera/index.htm 691e5261e7f26fe9bfca38d324fb1940
201.234.168.* 于 2007-06-02 11:19:44发表:
20b2fbbf1e760cd5e45c98339e81455a http://vedutabarattanapoli1629.inkrxe.org/video-cavallo-monta-cavalla/index.htm http://adattatoreseriale2fusb.inkrxe.org/sidus-tenebrarum/index.htm http://ricettabimboworwerk.inkrxe.org/italymedia-it-patrizia-pellegrino/index.htm http://paolafolliascoltamitesto.seyzuo.org/brushless-mandrino-forum/index.htm http://annalisascaraffiatorino.seyzuo.org/registratore-dvd-hdd-dvr-540h-s/index.htm http://nuovocoloresh125i.nlamku.org/elettrotecnica-appunto-itis/index.htm http://tritacarneamb.seyzuo.org/leggi-tutelano-relazione-fisioterapista-paziente/index.htm http://spaccalegnaverticalefoto.akqcvy.org/satira-dei-cesari-giuliano-apostata/index.htm http://saldarelinoleum.beajbg.org/rappresentante-italiano-grass-valley/index.htm http://ricaricarexverde357.nlamku.org/bar-wars-foto-giuseppe-mastrodonato-concorrenti/index.htm 63aa5c5d6850cbd0ab7a0b3644130d9e
82.226.82.* 于 2007-06-01 16:31:11发表:
1ce8c8aadf0a43095491143dc2f4dd35 http://pesciolinoflounder.mljuyb.org/roncato-borsone-beige-venezia/index.htm http://bonificatamponamentipalermo.uzghnh.org/angioletto-fiorucci/index.htm http://mewmewamicavincentinuda.uzghnh.org/spartito-champagne-supernova/index.htm http://dietologiaospedalebollate.leikrf.org/ginotti-torino-cimitero/index.htm http://produttorestendibiancheriaalluminio.leikrf.org/adolescente-mance-paghette/index.htm http://stampantemultifunzioneepsondx6000.uzghnh.org/tubazioni-preisolate-teleriscaldamento/index.htm http://espressionismosecondopoggioli.leikrf.org/clinica-neurologica-paideia-roma/index.htm http://dizionarioelettronicopwe320.pdjkai.org/suoni-sartiglia/index.htm http://esseltebusta.mljuyb.org/sterno-difficolta-digestive/index.htm http://servletinterrogazionidb.gkgobd.org/emma-watson-foto-piccante/index.htm 5447788e0ee79eeca3d64876f41eb1cf
190.48.237.* 于 2007-05-30 08:53:11发表:
0facfb00597b9b35584a87f8a5931b43 http://mnopyi.org/colchao/colchao-solene-probel.html http://mnopyi.org/ouvir/ouvir-winamp-clique.html http://mnopyi.org/bebida/bebida-alcoolica-futebol.html http://ifrtox.org/eletromecanica/eletromecanica-tres-torre.html http://ifrtox.org/site/site-ig-br-liberta-coracao.html http://wfcqxw.org/exoneracao/exoneracao-alimento-esposa.html http://pegekq.org/atraso/atraso-entrega-veiculo.html http://mnopyi.org/daniele/daniele-marrentinha-hotmail.html http://mnopyi.org/agencia/agencia-baby-sitter.html http://ifrtox.org/marcelo/marcelo-gleiser-marco-2007.html a91f06099d8916d08fc86aebeef191c8
200.85.65.* 于 2007-05-29 07:38:29发表:
0e951155a5983edb6c7adf8f8a3c95ce http://xwqumn.org/ritual/ritual-adivinhacao.html http://xvqeoy.org/tinta/tinta-suvinil-self-color.html http://lcitij.org/estrutura/estrutura-constituicao-1824.html http://lcitij.org/requer.txt/requer.html http://grpytd.org/policia/policia-federal-brasilia-br.html http://xwqumn.org/andamento/andamento-de-cpf.html http://grpytd.org/vestibular/vestibular-em-julho.html http://xvqeoy.org/evolucao/evolucao-politica-hititas.html http://lcitij.org/jca/jca-vaz-hotmail.html http://lcitij.org/site/site-www-iadenet-br-iadenet.html ea84313ff4cf4b8bb8ec851c693c83a5
60.35.54.* 于 2007-05-28 15:30:10发表:
074d3021fd854a85b7d4375c13250a5f http://grpytd.info/ez3/ez3-fab.html http://xvqeoy.info/desiste.txt/desiste.html http://pegekq.info/bate/bate-papo-talco.html http://ifrtox.info/peticao/peticao-assunto-acao-penal-privada-subsidiaria-publica.html http://pegekq.info/pousada/pousada-gls-sao-paulo.html http://ifrtox.info/fato/fato-1981-brasil.html http://ifrtox.info/encenacao.txt/encenacao.html http://ifrtox.info/ministerio/ministerio-cidade-gov.html http://pegekq.info/resumo/resumo-tres-porquinhos.html http://pegekq.info/presidente/presidente-do-senado-federal.html 921da3b25f91ff5411abb8e73f72697f
190.75.162.* 于 2007-05-27 23:44:56发表:
d9a5812f35e428ee9ae79ebc580db246 http://ovvkft.info/bomde/bomde-forro.html http://xwqumn.info/bomba/bomba-de-vacuo.html http://xwqumn.info/cidade/cidade-de-piranhas.html http://ovvkft.info/ventura/ventura-corporate-towers.html http://sxrzpn.info/aparecida/aparecida-cristine-prado-aguiar-martin.html http://ovvkft.info/2via/2via-conta-telefone.html http://sxrzpn.info/mpe/mpe-rs.html http://sxrzpn.info/janela/janela-area-servico.html http://lcitij.info/tratamento/tratamento-de-reposicao-hormonal.html http://lcitij.info/fazer/fazer-resume-equipamento-industriais.html 6d9dd05b81c19c63ae8e87cbbcfe2050
201.255.38.* 于 2007-05-27 07:36:25发表:
97102e48cc453fc4cf648154a07badb8 http://pegekq.info/programa/programa-do-jo-melhores-momento.html http://pegekq.info/letra/letra-ponto-cantados-orixas.html http://xvqeoy.info/cultivar/cultivar-planta-medicinais.html http://ifrtox.info/comissaria/comissaria-aduaneira.html http://ifrtox.info/empresa/empresa-de-escolta-vigilancia-bombeiro-civil-no-estado-de-sao-paulo.html http://grpytd.info/imobiliaria/imobiliaria-saopaulo.html http://pegekq.info/crencas/crencas-religiosas-indio.html http://xvqeoy.info/regiao/regiao-iliaca.html http://mnopyi.info/missao/missao-jocum-africa-ocidental.html http://grpytd.info/nome/nome-de-todos-jornal-do-brasil.html 899833c87d41a40d77c99858b4681e10
201.253.158.* 于 2007-05-16 03:20:35发表:
http://39320f515c7dfcb08186885b73cef7d9-t.qwoypw.info 39320f515c7dfcb08186885b73cef7d9 http://39320f515c7dfcb08186885b73cef7d9-b1.qwoypw.info 39320f515c7dfcb08186885b73cef7d9 http://39320f515c7dfcb08186885b73cef7d9-b3.qwoypw.info b43a48a848da56275457e93295654b68