You are on page 1of 2

Database – collection of data

Database Management – Managing the data


Database Management System- Software which will store the data, manage the
data and will give the access of the data to the user
MySQL, SQL Server, Oracle, MS Access
Data is stored in the database in the form of tables
Student
Roll_No Name Address Ph_No Email_id
1 Neha Kandivali 123456 neha@gmail.com
2 Aakash Borivali 456123 abc@gmail.com
3 Vikas
Table which contains rows and columns
Columns- Attributes
Rows- Records or values of the attributes
Database – collection of tables
College- Student, Teacher, Admin, Exam, Book
Database

System Defined User Defined

Database- Create the database, Alter the database, Delete (Drop) the database

Server

Database (One
or Multiple)
Tables – create the table, Alter the table, Drop the table- DDL Database Definition
language statements
Table operations- insert, delete and update – DML statements or DML operations
Database Manipulation Language
insert, delete and update operations are done using insert, delete and update queries
insert into table_name(column1, column2…..column n) values(valu1,
valu2….valuen)
delete from table_name where condition
update table_name set column_name=new value where condition (Specify
condition for row)
select * from table_name - Select all the columns & all the rows from the table
select column1, column2…. from table_name – select the specific columns from
the table
select * from table_name where condition- select the selected/specific rows from
the table

You might also like