View Single Post
  #1  
Old 12-03-2009, 03:08 AM
.BZU.'s Avatar
.BZU. .BZU. is offline


 
Join Date: Sep 2007
Location: near Govt College of Science Multan Pakistan
Posts: 9,693
Contact Number: Removed
Program / Discipline: BSIT
Class Roll Number: 07-15
.BZU. has a reputation beyond repute.BZU. has a reputation beyond repute.BZU. has a reputation beyond repute.BZU. has a reputation beyond repute.BZU. has a reputation beyond repute.BZU. has a reputation beyond repute.BZU. has a reputation beyond repute.BZU. has a reputation beyond repute.BZU. has a reputation beyond repute.BZU. has a reputation beyond repute.BZU. has a reputation beyond repute
Read Table Relations: and 6 properties of Relational Data Base Systems

Table Relations: and 6 properties of Relational Data Base Systems


In data base table is called relation.

  • Each cell of a table contain only single value.
  • Each column has distinct name.
  • The values is the column comes from the same domain.
  • The order of column is immaterial. Its means we can create columns without having any orders.
  • Each tuples or rows are distinct.
  • The order of row or tuple is immaterial
Code:
select *
from student
order by name;
OR
Code:
select *
from student
order by subjects;
It shows that order of tuples does not matter in the data base tables.

__________________
(¯`v´¯)
`*.¸.*`

¸.*´¸.*´¨) ¸.*´¨)
(¸.*´ (¸.
Bzu Forum

Don't cry because it's over, smile because it happened
Reply With Quote