Multiple choice

Which of the following retrieves all columns and all rows from the Customers table?

  1. SELECT * FROM Customers

  2. SELECT % FROM Customers

  3. SELECT all FROM Customers

  4. 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.