What is SQL?

Published July 23, 2025 By Sai Sree Ram Gundepudi

What is SQL?

SQL (Structured Query Language) is a standard language used to communicate with relational databases.

Main Uses:

  • Query data (SELECT)
  • Insert, update, delete records
  • Create and modify schemas
  • Control access and permissions

Example:

SELECT * FROM employees WHERE salary > 50000;

Was this solution helpful?

Your feedback helps improve our technical knowledge repository.

Share this article