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;