Q. How do you select all the columns from a table? (A) SELECT all FROM table; (B) SELECT columns FROM table; (C) SELECT * FROM table; (D) GET * FROM table; ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (C) SELECT * FROM table; Explanation: `SELECT *` selects all columns from the specified table.