SQL Introduction:What is SQL
SQL stands for Structure Query Language. SQL is used to create database and manipulate database.Almost every industries have their own database which is used on daily basis to maintain record of the inventory, Employee record, salary record etc.
So Database is very important for all industries whether it is small industries or big industries.
Without database , it is very difficult to maintain record so database is required at all place.
SQL is a structure query language that enables you to work with a database. Using SQL, you can insert records, update records, and delete records. You can also create new database objects such as databases and tables. And you can drop (delete) them
SQL is of two type which is frequently used in an application to save record
1. DDL(Data Definition Language)
2. DML(Data Manipulation language)
Data:
Data is a fact which is related to any object
For example your name, age, height, weight, etc are some data related to you
A image, picture, PDF , file etc is also considered as data.
Database:
Database is a collection of data. Databases is a storage and used to manipulation of data
What is DBMS(Database Management System)?
Database Management System (DBMS) is a storage of programs which allow its users to access database, manipulate data, reporting / representation of data .
DBMS also helps to control access to the database.
Type of DBMS:
1. Navigational DBMS
2. Relational DBMS
3. SQL DBMS
4. Object Oriented DBMS
Comments
Post a Comment