SQL Server Interview Question #2
What is SQL?
SQL Server Fundamentals Junior Beginner
Detailed Explanation
SQL stands for Structured Query Language. It is the standard language used to communicate with relational database systems. SQL is used to create database objects, retrieve data, insert records, update records, delete records, control permissions, and work with transactions.
SQL is a language; SQL Server is a database management system that implements SQL and Microsoft's T-SQL extensions.
Code Example
SELECT *
FROM Products;