Q. How do you select all the columns from a table?
β
Correct Answer: (C)
SELECT * FROM table;
Explanation: `SELECT *` selects all columns from the specified table.