logo

Question detail

Which SQL statement retrieves all columns from a table named Student?

Try the question, check the answer, then read the explanation to understand the curriculum point.

At a glance

MCQ

Type

practice

Style

Topic

Structured Query Language (SQL)

Exam-style question

Try this first

Which SQL statement retrieves all columns from a table named Student?.

  1. A.SELECT * FROM Student;
  2. B.INSERT * INTO Student;
  3. C.UPDATE * FROM Student;
  4. D.DELETE * FROM Student;

Model answer

What a good answer should say

  • SELECT * FROM Student;

Explanation

Why this works

SELECT is used to retrieve data. The asterisk represents all columns, and FROM identifies the table.

Common mistake

No common mistake is linked to this question yet.

Related flashcards

No flashcards are published for this page yet.

Related practice questions

No questions are published for this page yet.