Windows. Linux. Wordpress. Joomla. GIMP. Inkscape. Reparaciones.

Quizzes de desarrollo web

Clock
Minutes
Seconds
This query copies data from table2 to table1: INSERT INTO table2 SELECT * FROM table1;

Querying directly from a table takes more time than querying from a view.

This query is correct: SELECT * FROM employee ORDER BY age DESC;

This query is correct: SELECT column1 FROM table1 UNION SELECT column2 FROM table2;

This query is correct: SELECT * FROM employee WHERE age = 25;