SQL Tutorial

SQL Variables

Variables

Variables store data values. SQL provides clear rules for declaring and updating variables.

  • Declare variables using SQL conventions
  • Choose meaningful names
SELECT first_name, last_name FROM students;
Try it Yourself
Run this SQL example in your local environment or course sandbox.