Database Na Gaya Nung Nakaraan Flashcards
It is a collection of data stored in a format that can easily be accessed.
Database
It is a collection of programs which enable its users to access database,
manipulate data, reporting and representation of data.
Database Management System (DBMS)
It defines the logical design and
structure of a database and defines how data will be stored, accessed and updated in a database management system.
Database Model
4 Database Models
- Hierarchical Model
- Network Model
- Entity-Relationship Model
- Relational Model
The data is organized into tree-like structure.
Hierarchical Model
An extension of the Hierarchical model. In this model data is organized more like a graph, and are allowed to have more than one parent node.
Network Model
In this database model, relationships are created by dividing object of interest into entity and its characteristics into attributes.
Entity-Relationship Model
In this model, data is organized in
two-dimensional tables and the relationship is maintained by storing a common field.
Relational Model
It defines how the data is organized and how the relations among them are associated.
Database Schema
It is a vertical entity in a table that
contains all information associated with a specific field in a table.
Column
It simply deals with descriptions of the database schema and is used to create and modify the structure of database objects in the database.
DDL (DATA DEFINITION LANGUAGE)
Creates a new table, a view of a table, or other object in the database.
Create
Modifies an existing database object, such as a table.
Alter
Deletes an entire table, a view of a table or other objects in the database.
Drop
The SQL commands that deals with the manipulation of data present in the database.
DML (DATA MANIPULATION LANGUAGE)