ANSKEY SQL
ANSKEY SQL
1. Which of the following SQL functions does not belong to the Math
functions category?
i. SELECT POWER(5,3);
The output is:
125
Explanation: POWER(5,3) returns 5^3, which is 125.
i. SELECT ROUND(8.72,3);
The output is:
8.72
Explanation: The number 8.72 is already rounded to two decimal places, so
rounding it to 3 decimal places will not change it.
i. Returns the position of the first occurrence of the substring "the" in the
given string.
SQL Query:
sql
Copy code
sql
Copy code