Databases and Database Users
Databases and Database Users
Databases and
Database Users
As the CST’s
System
Oracle
MySql
Access
The internal
schema is the
underlying
design and
implementation
Data model
Type of data abstraction used to provide
conceptual representation.
An integrated collection of concepts for
describing data, relationships between data,
and constrains on the data in an organization.
9. Economies of scale
Database
A database is a collection of data that is organized
in a specific way.
The data is stored in a way that makes it easy to
access using queries.
Table
A database can have multiple tables in it.
All the data is stored in the tables.
A table has a set of fields in it.
These fields makes the design or the structure of
the database.
Field
Each table has a set of fields.
Our example table ‘student' has four fields - id,
name, …...
Row
All the terms till now dealt with the structure - row
refers to the data. It can also called a record.
The collection of a set of values for all fields in
one table is together called a row.
Relationship
There will be many cases when the data in one
table can be related to the data in another table.
This connection between two tables is called a
relationship.