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

SQL Commands

SQL Commands SQL Commands  are mainly classified into four types, which are DDL command, DML command, TCL command and DCL command. 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 easily remember all these SQL command like below; DDL Commands:  "dr. cat" d-drop, r-remane, c-create, a-alter, t-truncate. DML Commands:  "sudi". s-select, u-update, d-delete, i-insert. TCL Commands:  These commands are related to transaction, commands are: Commit, Rollback, Savepoint

Python - Function

Define Function in Python Function is block of codes. Python provide built-in and user define both types of function. Built-in function User defined function Built-in function This type of functions are pre-defined, you can directly use in your program. For example  print function is used for display message on screen or console. Print hello world in python a = "Hello World!" print a User defined function This type of functions are defined by programmer. According to your requirement you can defined you function name and it's functionality. In python you can define any function by using  def keyword. Syntax for define function in python def function_name ( parameter ) function body Define function in python def my_function(fname): print(fname + " Refsnes") my_function ("Emil") my_function ("Tobias") my_function ("Linus") Output Emil Refsnes Tobias Refsnes Linus Refsnes Explanation

Frames

A framed page is actually made up of multiple HTML pages. There is one HTML document that describes how to break up the single browser window into multiple windowpanes. Each windowpane is filled with an HTML document. Frame Page Architecture §   A <FRAMESET> element is placed in the html document before the <BODY> element. The <FRAMESET> describes the amount of screen real estate given to each windowpane by dividing the screen into ROWS or COLS . §   The <FRAMESET> will then contain <FRAME> elements, one per division of the browser window. §   Note: Because there is no BODY container, FRAMESET pages can't have background images and background colors associated with them. Frame Page Architecture <HTML> <HEAD> <TITLE> Framed Page </TITLE> <FRAMeSET COLS=“23%,77%”> <FRAME SRC=“Doc1.html”> <FRAME SRC=“Doc2.html”> </FRAMeSET > </HEAD> </HTML>