Introduction of SQL
Introduction of SQL
Introduction of SQL
SQL
What is SQL?
SQL stands for Structured Query Language
RDBMS
RDBMS stands for Relational Database Management System.
RDBMS is the basis for SQL, and for all modern database systems
such as MS SQL Server, IBM DB2, Oracle, MySQL, and Microsoft
Access.
SQL STATEMENT
DDL DML
DDL
CREATE ALTER
DROP
The ALTER TABLE statement is also used to add and drop various
constraints on an existing table.
DML
INSERT DELETE
UPDATE SELECT
The first way specifies both the column names and the values to be
inserted.
UPDATE table_name
SET column1 = value1, column2 = value2, ...
WHERE condition;