Answer Posted / ruchi
A view is a virtual table that consists of columns from one
or more tables. Though it is similar to a table, it is
stored in the database. It is a query stored as an object.
Hence, a view is an object that derives its data from one or
more tables. These tables are referred to as base or
underlying tables.
Once you have defined a view, you can reference it like any
other table in a database.
CREATE VIEW view_name
[(column_name[,column_name]….)]
[WITH ENCRYPTION]
AS select_statement [WITH CHECK OPTION]
Where:
A stored procedure is nothing more than prepared SQL code
that you save so you can reuse the code over and over again.
So if you think about a query that you write over and over
again, instead of having to write that query each time you
would save it as a stored procedure and then just call the
stored procedure to execute the SQL code that you saved as
part of the stored procedure.
| Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
Why is stored procedure used in ado.net?
List the 4 common ado.net namespaces?
Which is better ole db or odbc?
What is connected architecture in ado.net?
What are datareaders?
Explain sqlconnection object?
Which namespaces are used for data access?
What is full form of ado?
What is the difference between executenonquery () and executescalar ()?
What is the difference between ado.net and oledb?
What is ado rdo dao in visual basic?
What is fill method in ado.net?
How can we serialize the dataset object?
What does executenonquery () method return?
What is the difference between statement and preparedstatement interface?