Which of the following is the proper way to create an alias, E, for relational table Employee and retrieve all employee data? O A SELECT * AS E FROM EMPLOYEE; OB. SELECT * FROM EMPLOYEE WHERE EMPLOYEE = E; OC. SELECT * FROM EMPLOYEE E; OD. SELECT E.* FROM EMPLOYEE;

icon
Related questions
Question
**Question:**
Which of the following is the proper way to create an alias, E, for relational table Employee and retrieve all employee data?

**Options:**
A. `SELECT * AS E FROM EMPLOYEE;`

B. `SELECT * FROM EMPLOYEE WHERE EMPLOYEE = E;`

C. `SELECT * FROM EMPLOYEE E;`

D. `SELECT E * FROM EMPLOYEE;`
Transcribed Image Text:**Question:** Which of the following is the proper way to create an alias, E, for relational table Employee and retrieve all employee data? **Options:** A. `SELECT * AS E FROM EMPLOYEE;` B. `SELECT * FROM EMPLOYEE WHERE EMPLOYEE = E;` C. `SELECT * FROM EMPLOYEE E;` D. `SELECT E * FROM EMPLOYEE;`
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps

Blurred answer