Computer Documentation
Computer Documentation
IN
COMPUTER
Characteristics of SQL
SQL is easy to learn.
SQL is used to access data from relational database
management systems.
SQL can execute queries against the database.
SQL is used to describe the data.
SQL is used to define the data in the database and
manipulate it when needed.
SQL is used to create and drop the database and
table.
SQL is used to create a view, stored procedure,
function in a database.
SQL allows users to set permissions on tables,
procedures, and views.
SQL Commands
Data definition language (DDL)
DDL changes the structure of the table like creating a
table, deleting a table, altering a table, etc.
Data Manipulation Language
DML commands are used to modify the database. It
is responsible for all form of changes in the database.
Data Control Language DCL commands are used to
grant and take back authority from any database
user.
Transaction Control Language
TCL commands can only use with DML commands
like INSERT, DELETE and UPDATE only.
Data Query Language
DQL is used to fetch the data from the database.