CBSE Class 12 Informatics Practices Question 49 of 103

Review of Database Concepts & SQL — Question 19

Back to all questions
19
Question

Question 19

The symbol Asterisk (*) in a select query retrieves ............... .

  1. All data from the table
  2. Data of primary key only
  3. NULL data
  4. None of these
Answer

All data from the table

Reason — The asterisk symbol (*) is a wildcard character in SQL that retrieves all columns or fields from a table. When used in a SELECT statement, it returns all columns and rows from the specified table.