Comparison Between Common Oracle functions and SQL Server

Source: Internet
Author: User
Tags acos asin mathematical functions

The following articles mainly compare SQL Server and common Oracle functions. This article mainly introduces the specific content of common functions related to mathematical functions and trigonometric functions. The following describes the specific solution, I hope this will help you in your future studies.

Mathematical functions

1. Absolute Value

 
 
  1. S:select abs(-1) value  
  2. O:select abs(-1) value from dual  

2. INTEGER (large)

 
 
  1. S:select ceiling(-1.001) value  
  2. O:select ceil(-1.001) value from dual  

3. Smaller values)

S: select floor (-1.001) value

O: select floor (-1.001) value from dual

4. Integer truncation)

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 base power

S: select Exp (1) value 2.7182818284590451

O: select Exp (1) value from dual 2.71828182

7. Take the base logarithm of e.

S: select log (1, 2.7182818284590451) value 1

O: select ln (2.7182818284590451) value from dual; 1

8. Use 10 as the base logarithm.

S: select log10 (10) value 1

O: select log (10, 10) value from dual; 1

9. 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. Evaluate the base power of any number

S: select power (3, 4) value 81

O: select power (3, 4) value from dual 81

12. Random Number acquisition

S: select rand () value

O: select sys. dbms_random.value (0, 1) value from dual;

13. Get the symbol

S: select sign (-8) value-1

O: select sign (-8) value from dual-1

Trigonometric correlation

14. Circumference Rate

S: select pi () value 3.1415926535897931

O: select acos (-1) from dual 3.1415926535897932384626433832795028842.

15. sin, cos, and tan parameters are in radians.

S: SELECT sin () value

O: SELECT sin () value from dual

16. Asin, Acos, Atan, and Atan2 parameters are all in radians.

S: SELECT Asin () value

O: SELECT Asin () value from dual

17. radian angle Interchange

S: DEGREES: RADIANS-> Angle RADIANS: Angle-> RADIANS

O: no built-in radians and angle conversion functions are provided.

Comparison between values

18. Calculate the maximum value of the Set

 
 
  1. S:select max(value) value from  
  2. (select 1 value  
  3. union  
  4. select -2 value  
  5. union  
  6. select 4 value  
  7. union  
  8. select 3 value)a  
  9. O:select greatest(1,-2,4,3) value from dual   

The above content is a description of the comparison between SQL Server and common Oracle functions, hoping to help you in this regard.

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.