Multiple choice Which of the following retrieves all columns and all rows from the Customers table? SELECT * FROM Customers SELECT % FROM Customers SELECT all FROM Customers SELECT all columns FROM Customers Reveal answer Fill a bubble to check yourself A Correct answer Explanation In SQL, the asterisk (*) wildcard character is used in a SELECT statement to specify that all columns should be retrieved from the target table.