SQL Interview Question

What is SQL?

Updated 2026-07-10 · Beginner friendly
Quick answer

SQL stands for Structured Query Language, and it is the standard language for working with relational databases. You use it to create tables, add and update data, and most importantly to query data using SELECT statements. Almost every relational database, from MySQL to PostgreSQL to SQL Server, understands SQL.

What you can do with it

SELECT name, age
FROM users
WHERE age > 18
ORDER BY age DESC;

A relational database stores data in tables made of rows and columns, and tables can relate to each other through keys. SQL is how you talk to that data.

In the interview

Keep the definition short and practical. Say SQL is the standard language to query and manage relational databases, then show a simple SELECT. Interviewers want to see you actually think in tables and rows.

Want the full SQL guide?

Read every SQL concept with notes, diagrams, and code in one place. Track your progress as you go.

Open the SQL guide All SQL questions