+3 votes
in Class 12 by kratos

Write the output of the following SQL queries:

(i) SELECT INSTR('INTERNATIONAL','NA');

(ii) SELECT LENGTH(CONCAT('NETWORK' ,'ING'));

(iii) SELECT ROUND(563. 345,-2) ;

(iv) SELECT DAYOFYEAR(' 2014-01-30' );

1 Answer

+5 votes
by kratos
 
Best answer

(i.) 6

(ii.) 10

(iii.) 600

(iv.) 30

...