myclass24
myclass24your class. your pace.
GeneralCLASS 10CBSE
answered 25 May 2026

What is SQL?

A.VERIFIED ANSWERfact-checked by tutors

SQL stands for Structured Query Language the language used to store, retrieve, update, and delete data in databases.

Most businesses store data in relational databases (MySQL, PostgreSQL, Microsoft SQL Server), which organise data into tables with rows and columns. SQL is how you talk to those tables.

The four core operations:

  • SELECT — retrieve data
  • INSERT — add new data
  • UPDATE — change existing data
  • DELETE — remove data

A simple example:

SELECT name, email FROM customers WHERE city = 'London';

This says: "From the customers table, give me the name and email of everyone in London."

SQL is not a general programming language it is specifically for querying databases.

Suggested Q&A

GENERAL · CLASS 10