Mysql miscellaneous
- What is the use of “VIEW” in Mysql?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: D
All of above
- Which command is used to create “Temporary tables” in Mysql?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: E
“Temporary Tables” are output format of any query.
- In the following query, “Employee_1” belongs to which category of table in Mysql?
CREATE VIEW Employee_1 AS
SELECT firstname, lastname, Employee_id FROM Employee;
-
View Hint View Answer Discuss in Forum
NA
Correct Option: A
“CREATE VIEW” creates “Virtual tables” only.
- Find the missing clause from the query?
CREATE VIEW Emp_1 AS
SELECT firstname, lastname, Emp_id
_________Emp;
-
View Hint View Answer Discuss in Forum
NA
Correct Option: C
“CREATE VIEW” cannot be used without “FROM” clause.
- Which of the following statements is/are correct with respect to “VIEW”?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: D
All of above