0% found this document useful (0 votes)
53 views

SQL Short Notes

SQL is a standard language used to access and manipulate data in relational databases. It allows users to retrieve, insert, update, and delete records from database tables using commands like SELECT, INSERT, UPDATE, DELETE. SQL statements are divided into several types including data definition, data manipulation, data control, transaction control, and data query languages. Common SQL commands involve creating database structures, inserting/updating/deleting rows, and selecting attributes.

Uploaded by

konika jha
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
53 views

SQL Short Notes

SQL is a standard language used to access and manipulate data in relational databases. It allows users to retrieve, insert, update, and delete records from database tables using commands like SELECT, INSERT, UPDATE, DELETE. SQL statements are divided into several types including data definition, data manipulation, data control, transaction control, and data query languages. Common SQL commands involve creating database structures, inserting/updating/deleting rows, and selecting attributes.

Uploaded by

konika jha
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

SQL SHORT NOTES

SQL is a standard database query language used for accessing and manipulating data in
relational database. SQL commands are used to retrieve data from database tables, insert
new records into tables, update existing records and delete records from tables.

ADVANTAGES TO SQL
 Easy to learn
 Easy to syntax
 Portable
 Interacting language
 Create several views

TYPES OF SQL STATEMENTS


 Data Definition Language
 Data Manipulation Language
 Data Control Language
 Transaction Control Language
 Data Query Language

LIST OF SQL COMMANDS


 CREATE: defines the database structure schema
 INSERT: insert data into the row of a table
 UPDATE: updates data in a database
 DELETE: removes one or more rows from a table
 SELECT: selects the attributes based on the condition described by the
WHERE clause.
 DROP: removes tables and database.

You might also like