SQL is the standard language for managing and querying relational databases.
SQL (Structured Query Language) is used to manage and query relational databases. It allows insertion, updating, deletion, and retrieval of data.
SQL was developed at IBM in the 1970s, originally called SEQUEL. It later became the industry standard for relational databases.
CREATE TABLE Students (
ID INT PRIMARY KEY,
Name VARCHAR(50),
Age INT
);
INSERT INTO Students VALUES (1, 'John', 20);
SELECT * FROM Students;
Output:
ID | Name | Age
1 | John | 20
Email: info@sql.com