Multiple choice

SELECT * FROM users   What does * do?

  1. Grab the Database

  2. Grab a Single Column

  3. Grab all the Columns

  4. SELECT a Varchar

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The asterisk (*) is a wildcard character in SQL that instructs the database to return all columns associated with the specified table.