Database - SQL for Database Construction - Discussion

Discussion Forum : SQL for Database Construction - General Questions (Q.No. 10)
10.
What is an SQL virtual table that is constructed from other tables?
Just another table
A view
A relation
Query results
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
4 comments Page 1 of 1.

Ofori ebenezer said:   1 year ago
Can anyone show me how to create a table?

Vihar said:   9 years ago
And view is virtual table.

CREATE VIEW Command use to create it.

Kulbhushan said:   9 years ago
We can create the same table as previous by following;

Create table emp1 as select * from emp;.

Ash said:   1 decade ago
What is the process to get SQL virtual table from another tables?Means tell detail on View?

Post your comments here:

Your comments will be displayed after verification.