Question: Which of the following commands will list the tables of the current database?
A
B
C
D
SHOW TABLES
B
DESCRIBE TABLES
C
SHOW ALL TABLES
D
LIST TABLES
Note: Not available
SELECT ID FROM (
SELECT ID, name FROM (
SELECT *
FROM employee
)
);
The error message 'Every derived table must have its own alias' appears.
Which of the following is the best solution for this error?