Oracle SQL Server functions

Source: Internet
Author: User
Tags abs getdate time zones rtrim sin square root

1. Absolute value
S:select ABS ( -1) value
O:select ABS ( -1) value from dual

2. Rounding (Large)
S:select Ceiling ( -1.001) value
O:select ceil ( -1.001) value from dual

3. Rounding (small)
S:select Floor ( -1.001) value
O:select Floor ( -1.001) value from dual

4. Rounding (interception)
S:select cast ( -1.002 as int) value
O:select trunc ( -1.002) value from dual

5. Rounding
S:select round (1.23456,4) value 1.23460
O:select round (1.23456,4) value from dual 1.2346

6.E is the power of the bottom
S:select EXP (1) Value 2.7182818284590451
O:select EXP (1) value from dual 2.71828182

7. Take e as the base logarithm
S:select log (2.7182818284590451) value 1
O:select ln (2.7182818284590451) value from dual; 1

8. Take 10 as the base logarithm
S:select log10 (Ten) value 1
O:select log (10,10) value from dual; 1

9. Take the Square
S:select SQUARE (4) value 16
O:select Power (4,2) value from dual 16

10. Take the square root
S:select SQRT (4) Value 2
O:select SQRT (4) value from dual 2

11. Seek the power of any number as the base
S:select Power (3,4) value 81
O:select Power (3,4) value from dual 81

12. Take a random number
S:select rand () value
O:select Sys.dbms_random.value (0,1) value from dual;

13. Take the symbol
S:select sign ( -8) value-1
O:select sign ( -8) value from Dual-1

======= Mathematical Function =======

14. Pi
S:select PI () value 3.1415926535897931
O: I don't know

15.sin,cos,tan parameters are measured in radians
Example: Select Sin (PI ()/2) value gets 1 (SQL Server)

16.asin,acos,atan,atan2 return radians

17. Radian Angle Interchange (sqlserver,oracle not known)
DEGREES: Radian-〉 Angle
RADIANS: Angle-〉 radians

Comparison between ======= values =======

18. Find the maximum value of the set
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. Find the minimum value of the set
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. How to handle null values (NULL in F2 is replaced by 10)
S:select f1,isnull (f2,10) value from TBL
O:select F1,NVL (f2,10) value from TBL

Comparison between ======= values =======

21. Find the character number
S:select ASCII (\ "A\") value
O:select ASCII (\ "A\") value from dual

22. To find a character from an ordinal
S:select char (value)
O:select Chr (value from dual)

23. Connect
S:select \ "11\" +\ "22\" +\ "33\" value
O:select CONCAT (\ "11\", \ "22\") | | Value from dual

23. Sub-string position--return 3
S:select CHARINDEX (\ "S\", \ "Sdsq\", 2) value
O:select INSTR (\ "sdsq\", \ "S\", 2) value from dual

23. The position of the fuzzy substring-returns 2, the parameter minus the middle% returns 7
S:select patindex (\ "%d%q%\", \ "Sdsfasdqe\") value
O:oracle did not find, but INSTR can pass the fourth haze ask? Acutely a glimpse of the squid ask?br> select INSTR (\ "sdsfasdqe\", \ "Sd\", "$") value from dual return 6

24. Finding substrings
S:select substring (\ "abcd\", 2,2) value
O:select substr (\ "abcd\", 2,2) value from dual

25. Substring instead of return AIJKLMNEF
S:select STUFF (\ "Abcdef\", 2, 3, \ "ijklmn\") value
O:select Replace (\ "abcdef\", \ "bcd\", \ "ijklmn\") value from dual

26. Sub-string Replace all
S: Not Found
O:select Translate (\ "Fasdbfasegas\", \ "Fa\", \ "i \") value from dual

27. Length
S:len,datalength
O:length

28. Case Conversion Lower,upper

29. Capitalize the first letter of the word
S: Not Found
O:select initcap (\ "ABCD Dsaf df\") value from dual

30. Left fill space (the first parameter of the Lpad is a space, the same as the space function)
S:select Space (Ten) +\ "abcd\" value
O:select Lpad (\ "abcd\", +) value from dual

31. Right-fill space (the first argument of Rpad is a space, the same space function)
S:select \ "Abcd\" +space (Ten) value
O:select rpad (\ "abcd\", +) value from dual

32. Remove spaces
S:ltrim,rtrim
O:ltrim,rtrim,trim

33. Repeating strings
S:select REPLICATE (\ "abcd\", 2) value
O: Not Found

34. Comparison of pronunciation similarity (these two words return the same value, pronounced the same)
S:select SOUNDEX (\ "Smith\"), SOUNDEX (\ "Smythe\")
O:select SOUNDEX (\ "Smith\"), SOUNDEX (\ "Smythe\") from dual
SQL Server uses select difference (\ "smithers\", \ "Smythers\") to compare soundex differences
Return 0-4,4 for the same, 1 highest

======= Date Function =======

35. System Time
S:select getdate () value
O:select Sysdate value from dual

36. A few days before and after
Add and subtract directly from integers

37. Date of request
S:select convert (char), GETDATE (), Value
O:select trunc (sysdate) value from dual
Select To_char (sysdate,\ "yyyy-mm-dd\") value from dual

38. Ask for Time
S:select Convert (char (8), GETDATE (), 108) value
O:select To_char (sysdate,\ "hh24:mm:ss\") value from dual

39. Take other parts of the date time
S:datepart and Datename functions (the first parameter is determined)
The second parameter of the O:to_char function determines

Parameter---------------------------------the table below needs to be supplemented
Year yy, yyyy
Quarter QQ, Q (quarterly)
month mm, m (invalid for M o)
DayOfYear dy, y (o table week)
Day DD, D (invalid for D O)
Week wk, ww (wk o Invalid)
Weekday DW (o unclear)
Hour hh,hh12,hh24 (hh12,hh24 s invalid)
Minute mi, n (N o Invalid)
Second SS, s (S o invalid)
Millisecond MS (o invalid)
----------------------------------------------

40. Last day of the month
S: I don't know.
O:select last_day (sysdate) value from dual

41. One day of the week (e.g. Sunday)
S: I don't know.
O:select next_day (sysdate,7) vaule from DUAL;

42. String Turn Time
S: can go directly or 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. Find the difference between a part of two dates (e.g. seconds)
S:select DateDiff (Ss,getdate (), GETDATE () +12.3) value
O: Subtract directly from two dates (e.g. d1-d2=12.3)
SELECT (D1-D2) *24*60*60 vaule from DUAL;

44. Date of novelty based on difference (e.g. minutes)
S:select DateAdd (Mi,8,getdate ()) value
O:select sysdate+8/60/24 vaule from DUAL;

45. Find time in different time zones
S: I don't know.
O:select new_time (sysdate,\ "ydt\", \ "Gmt\") Vaule from DUAL;

-----Time zone parameter, Beijing should be ydt in the East 8 district-------
AST ADT Atlantic Standard Time
BST BDT Bering Sea Standard Time
CST CDT Central Standard Time
EST EDT Eastern Standard Time
GMT Greenwich Standard Time
HST HDT Alaska? Hawaii Standard Time
MST MDT Mountain Standard Time
NST Newfoundland Standard Time
PST PDT Pacific Standard Time
YST YDT Yukon Standard Time

Oracle SQL Server functions

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.