could u plz explain about joins and views?

Answers were Sorted based on User's Feedback



could u plz explain about joins and views?..

Answer / vimal

VIEWS
View is a virtual table
If we want to access specific column from specific table we
can go for views
JOINS
Sometimes we have to select data from two or more tables to
make our result complete we have to perform join

Is This Answer Correct ?    3 Yes 0 No

could u plz explain about joins and views?..

Answer / mohsin mohammed abdul

basically we use joins to query a sql with 1 or more tables.
1) self join.. join within the same table using aliases
2) equi join.. join between the 2 tables with commom columns
3) outer join.. and it is divided into 2 catagories left
outer join and right outer join.

View :- its a logical representation of one or more tables.
View doesn't have the data of its own. But still you can
perform DML on a view ..the changes will be done in the
underlying base tables..

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More SQL Server Interview Questions

How to compare the top two records using sql?

0 Answers  


How to list all columns in a table using odbc_columns()?

0 Answers  


What are the differences between char and nchar in ms sql server?

0 Answers  


explain what is a deadlock and what is a live lock? How will you go about resolving deadlocks? : Sql server database administration

0 Answers  


How you can move data or databases between servers and databases in sql server?

0 Answers  






Explain powershell included in sql server 2008?

0 Answers  


What are secondary xml indexes?

0 Answers  


What are the different sql server versions?

0 Answers  


What is 1nf 2nf?

0 Answers  


Can we insert data if clustered index is disabled?

0 Answers  


What is an indice?

0 Answers  


How to generate create view script on an existing view?

0 Answers  


Categories