What is the difference bwtween view and join

Showing Answers 1 - 5 of 5 Answers

view  is  a virtual table where data is not stored physically  but give the convenient method to retrieve and manipulate the info as needed.done for SECURITY REASONS. helps make SIMPLE QUERIES.

Join is joining of two tables


 

  Was this answer useful?  Yes

cc

  • Mar 22nd, 2007
 

View:View is a virtual table, which is created by records from two or more tables.
          syntax: create view viewname as select statement.


Join: Joins are used to retrive data from two very distinctive tables.

NOTNULL

  • May 18th, 2009
 

View is mainly created to provide security for the data and data definitions.
Mainly used to retrieve the data in a secure manner.
View cannot use space in the physical memory means virtually it will resides.
Join mainly used to join the data from two or more tables.
It is the RDBMS concept I mean not a
DBMS.
Join also resides in the virtual.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions