Select Query
- Which statement is used to select columns and rows from the table?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: C
SELECT
- 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
- 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