Section 1 - Instruction

So far, you've learned the core SELECT ... FROM structure for retrieving data and the AS keyword for creating readable column aliases. Now, let's put them together to write clear, effective queries.

Engagement Message

Ready to practice crafting your own SQL statements?

Section 2 - Practice

Type

Fill In The Blanks

Markdown With Blanks

Fill in the blanks to select the product_name and unit_price columns from the products table.

Suggested Answers

  • SELECT
  • FROM
  • AS
Section 3 - Practice

Type

Multiple Choice

Practice Question

You want to select the email column from the users table and display it with the header "User Email Address". Which query is correct?

A. SELECT "User Email Address" AS email FROM users; B. SELECT email FROM users AS "User Email Address"; C. SELECT email AS User Email Address FROM users; D. SELECT email AS "User Email Address" FROM users;

Suggested Answers

  • A
  • B
  • C
  • D - Correct
Sign up
Join the 1M+ learners on CodeSignal
Be a part of our community of 1M+ users who develop and demonstrate their skills on CodeSignal