Vaibahav Rai Class-10th Database Management System
Vaibahav Rai Class-10th Database Management System
Vaibahav Rai Class-10th Database Management System
SYSTEM
By Vaibhav Rai
Data and Information
Data is a collection of facts.
Information is how you understand those facts in context.
Data is unorganized, while information is structured or
organized.
Information is an uncountable noun, while data is a mass
noun.
Data is not typically useful on its own, but the information
is.
Concept of Database
A database is an organized collection of structured
information, or data, typically stored electronically in a
computer system.
A database is usually controlled by a database
management system (DBMS).
Features Of Database SYSTEM
• High Cost
• Huge Size. ...
• Database Failure. ...
• Complexity. ...
• Increased Staff Cost. ...
• Requirement of Technical Staff. ...
• Cost of Data Conversion. ...
• Performance.
Structure of Database System
Within a database, related data are grouped into tables, each of which consists
of rows (also called tuples) and columns, like a spreadsheet.
RELATIONAL DATABASE MANAGEMENT
SYSTEM (RDBMS)
An RDBMS is a type of database management system (DBMS) that stores
data in a row-based table structure which connects related data elements.
An RDBMS includes functions that maintain the security, accuracy, integrity
and consistency of the data.
This is different than the file storage used in
a DBMS.
CREATE AND EDIT TABLE USING WIZARD AND SQL
COMMANDS
Database Objects
• Table
• Queries
• Forms
• Reports
DATA TYPES
Numeric Data Types
String Data Types
Date and Time Data Types
Binary Data Types
MANIPULATING DATA
The SQL data manipulation language (DML) is used to query and modify
database data.
In this chapter, we will describe how to use the SELECT, INSERT, UPDATE, and
DELETE SQL DML command statements, defined below. In the SQL DML
statement: Each clause in a statement should begin on a new line.
In a database to define the structure of the data
and to manipulate data certain commands are
used. These are:
• Data Definition Language (DDL): Data Definition Language (or DDL) includes those
SQL statements that create and drop locations, databases and database objects
such as tables and indexes. DDL also includes statements to alter database
objects and impose integrity constraints on tables.
• Data Manipulating Languages (DML): A data manipulation language (DML) is a
family of computer languages including commands permitting users to
manipulate data in a database. This manipulation involves inserting data into
database tables, retrieving existing data, deleting data from existing tables and
modifying existing data.
• DML consists of:
o Retrieving Data(SELECT Command)
o Inserting Data(INSERT Command)
o Deleting Data(DELETE Command)
o Modification(UPDATE Command)
OPEN OFFICE BASE-INTRODUCTION