Which SQL function is used to convert a string to uppercase letters?
Which SQL function is used to extract a substring from a string?
Consider the following SQL code:
SELECT UPPER('Hello World') AS Result;
What will be the output of the above code?
Consider the following SQL code:
SELECT LOWER('Hello World') AS Result;
What will be the output of the above code?
Consider the following SQL code:
SELECT LENGTH('Hello World') AS Result;
What will be the output of the above code?
Consider the following SQL code:
Consider the following SQL code:
What will be the output of the above code?
Consider the following SQL code:
SELECT SUBSTR('Hello World', 7) AS Result;
What will be the output of the above code?
Consider the following SQL code:
SELECT CONCAT('Hello', ' ', 'World') AS Result;
What will be the output of the above code?
Consider the following SQL code:
SELECT UPPER(SUBSTR('Hello World', 3, 4)) AS Result;
What will be the output of the above code?
Consider the following SQL code:
SELECT CONCAT('Hello', SUBSTR(' World', 2)) AS Result;
What will be the output of the above code?
Consider the following SQL code:
SELECT INSTR(CONCAT('Hello World', 'Hello'), 'o') AS Result;
What will be the output of the above code?
Consider the following SQL code:
SELECT LENGTH(CONCAT('Hello', ' ', 'World')) AS Result;
What will be the output of the above code?