A view does not exists physically but still it acts like a table and it returns a record set as a table does. A important advantage of having a view is we can hide sensitive information from tables being selected.
CREATE VIEW [dbo].[TestView]
AS
SELECT * FROM tblABS
select * from TestView
No comments:
Write comments