MySQL – The execution of the query given below is similar to which of these queries with respect to…


The execution of the query given below is similar to which of these queries with respect to merging of the derived table “derivedtable”?

SELECT * 
FROM (SELECT * FROM table) 
AS derivedtable;

Related Posts