Creating View
It just create duplicate
table of original’s table and whole data (rows and columns) is same.In figure,
View shown.
CREATE VIEW view_name As
SELECT Column_Names
FROM Table_Name
WHERE Conditions
Example-
CREATE VIEW mac As
SELECT
ename
FROM emp
No comments:
Post a Comment