Computer Science, asked by iamabhaymittal1530, 1 year ago

Write SQL statement to view names if all the tables contained in the current database.

Answers

Answered by Anonymous
2
For viewing the names only:
CREATE VIEW <TABLENAME>
AS SELECT Name FROM <TABLENAME>
Similar questions