Write SQL statement to view names if all the tables contained in the current database.
Answers
Answered by
2
For viewing the names only:
CREATE VIEW <TABLENAME>
AS SELECT Name FROM <TABLENAME>
CREATE VIEW <TABLENAME>
AS SELECT Name FROM <TABLENAME>
Similar questions