English, asked by abhi00722, 1 month ago

Which of the following SELECT statements prints the string 56

Answers

Answered by nidaeamann
12

Explanation:

Complete question statement is;

Which of the following SELECT statements prints the string 56

SELECT SUBSTR ( 123456, 5)

SELECT SUBSTR ( 123456, 56)

Among the various options given in question statement the correct statement is the second one.

Select is a function in MySQL language. This language is famous for handling databases and queries. Substr is a function that takes the first argument as the main string and then other argument as the one that needs to be selected

Similar questions