Select Query
- Which Clause is used to select a particular table in Mysql?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: B
FROM
- In the following query “*” stands for
SELECT * FROM Employee;
-
View Hint View Answer Discuss in Forum
NA
Correct Option: C
Retrieve all data from the table
- In the following query “Employee” stands for
SELECT Emp_id, fname, lname, Birth_date
FROM Employee;
-
View Hint View Answer Discuss in Forum
NA
Correct Option: A
Table name
- Which statement is used to select columns and rows from the table?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: C
SELECT
- Which among the following is an optional Keyword?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: C
“AS” and “ALL” are optional.