Skip to main content

What is Rdbms

Rdbms

All modern database management systems like SQL, MS SQL Server, IBM DB2, Oracle, My-SQL and Microsoft Access are based on Rdbms.
Rdbms was developed by a jermen scientice mr. E.F codd at 1970 this model was developed on the basis of a mathematical concept called relational algebra.
E.F codd
Relations are classified into three types, they are;
  • 1:1
  • 1:M or M:1
  • M:M (many to many)

one-one Relationship

In this relationship one object have only one relation with another object.
one-one relationship
In above image one employee have only one emp_id. this is the example of 1:1 relationship

one-many or many-one Relationship

In this relationship one object have relation with many other object.
one-many relationship
In above image one faculty can teach many subjects. This is the example of 1:m relationship

many-many Relationship

In this relationship many object has the relationship with many other object.
many-many relationship
In above image one customer can purchase many items and one item can purchase by many customers, this is the example of m:m relationship

Properties of Rdbms

  • Data should be stored in the form of table.
  • A table can be defined as collection of rows and columns
  • The horizontal lines are known as row or tupples or record.
  • The vertical lines are known as column or field or attributes.
  • The intersection of row and column is known as cell.
  • A cell is a place where you can store your data.
  • The other name of table is called as entry or class or object.
rdbms-properties

What is table

Rdbms are use table to store data, table are the collection of related data entries and row and column. Below is the simple example of table which store detail about employee.
Emp_idNameSalary
101Mafas29001
102Rifas43500
103Asmi50000
104Rizkan54000
105Irsath43100

What is Field

Field is a smaller entity of the table which contains specific information about every record in the table. In the above example, the field in the Employee table consist of emp_id, name, salary.

What is row

Row is a part of table which is horizontally disply in table it is also called record. Row contains the specific information of each individual entry in the table. In below example row contain detail of Hitesh kumar records.
105Irsath43100

What is column

A column is a vertical entity in the table which contains all information associated with a specific field in a table.
Mafas
Rifas
Asmi
Rizkan
Irsath

What is cell

A cell is a place where you can store your data.

Comments

Popular posts from this blog

Introduction of SQL

Introduction of SQL SQL (Structure Query Language)  was initially developed at IBM by Donald D. Chamberlin and Raymond F. Boyce in the early 1970s. This version, initially called SEQUEL (Structured English Query Language), was designed to manipulate and retrieve data stored in IBM's original quasi-relational database management system. Features of SQL SQL is not a case sensitive language. Every commands in SQL should ends with semicolon(;). SQL can also called as sequel (SEQUEL). SQL Sub Language SQL is mainly divided into four sub language Data Definition Language(DDL) Data Manipulation Language(DML) Transaction Control Language(TCL) Data Control Language(DCL) Only for remember You can remember all these command like below; DDL Commands "dr. cat" d-Drop, r-Rename, c-Create, a-Alter, t-Truncate. DML commands "sudi". s-Select, u-Update, d-Delete, i-Insert.

css introduction

What is CSS? •Stands for Cascading Style Sheet •CSS allows you to style HTML elements, or define how they are displayed. •Styles are normally stored in Style Sheets •External Style Sheetscan save you a lot of work •External Style Sheets are stored in CSS files •Multiple style definitions will cascadeinto one •Examples: –Changing the color of text –Specifying the size and position of a div What is CSS? (cont.) •CSS is an alternative to the “style” attribute. – <div style=“height:500px; width:200px”></div> •Advantages: –Can control the style of many different elements with a single command. –Separation of function: HTML can focus on content while CSS handles styling. CSS (Cascading Style Sheet) •Simple mechanism for adding style to web page •Code be embedded into the HTML file •HTML tag: <style type=“text/css”>CODE</style> •Also be in a separate file FILENAME.css •HTML tag: <link rel=“stylesheet” href=“scs.css” type=“text/css”> •St...

Text Formatting

• Text formatting tags modify the text between the opening tag and the closing tag – Ex. <b>Hello</b> makes “Hello” bold