DBMS

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 2

Data Data mean known facts that can be recorded and that have implicit meaning Database:A database

is an application that manages data and allows fast storage and retrieval of that data. A database is a collection of related data. DBMS: A database management system (DBMS) is a software package with computer programs that controls the creation, maintenance, and use of a database. It allows organizations to conveniently develop databases for various applications.

Database System:We call the database and DBMS software together a database system.

Data structure:Data structure is a particular way of storing and organizing data in a computer so that it can be used efficiently. Database Schema:A database schema is a collection of meta-data that describes the relations in a database. A schema can be simply described as the "layout" of a database or the blueprint that outlines the way data is organized into tables. Schema are normally described using Structured Query Language as a series of CREATE statements that may be used to replicate the schema in a new database.

Relational database In a relational database, all data is stored in tables. These have the same structure repeated in each row (like a spreadsheet) and it is the relations between the tables that make it a "relational" table. SQL:SQL is short for Structured Query Language and is a simple language that provides instructions for building and modifying the structure of databases and for modifying the data stored in the tables. The main commands used to modify and retrieve data are:

Select - Fetches data. Insert - Inserts one or more rows of data. Update - Modifies existing row(s) of data Delete - Deletes rows of data.

There are several ANSI/ISO standards such as ANSI 92, one of the most popular. This defines a minimum subset of supported statements. Most compiler vendors support these standards.

You might also like