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
What is openquery?
What does executereader return?
Explain which name space is used to get assembly details?
What are all the different authentication techniques used to connect to MS SQL Server?
What is ado recordset?
What is sqlconnection and sqlcommand?
Explain the different row versions available in table?
What is namespace in ado.net?
How can we load multiple tables in a dataset?
Which is better entity framework or ado.net?
What is microsoft ado.net?
What is acid in ado.net?
What is DataRowCollection?
Explain executenonquery?
what is the difference betwen typed dataset and untyped dataset?in general which dataset can we use in programming?