What will be the result of the following MySQL command?
SELECT emp_id,‘ACTIVE’ STATUS,emp_id * 3.14 emp_pi,UPPER (lname) last_nameFROM employee;

What will be the result of the following MySQL command?

SELECT emp_id,‘ACTIVE’ STATUS,emp_id * 3.14 emp_pi,UPPER (lname) last_nameFROM employee;
Correct Answer emp_id, Status, emp_pi, last_name

Related Questions

What will be the result of the following MySQL command?
SELECT emp_id,‘ACTIVE’ AS STATUS,emp_id * 3.14 AS emp_pi,UPPER (lname) AS last_nameFROM employee;
What is the significance of "ORDER BY emp_id DESC" in the following MySQL command?
SELECT emp_id, fname, lnameFROM personORDER BY emp_id DESC;
What is the significance of "ORDER BY emp_id ASC" in the following MySQL command?
SELECT emp_id, fname, lnameFROM personORDER BY emp_id ASC;
What is the significance of the statement "HAVING COUNT (emp_id)>2" in the following MySQL statement?
SELECT d.name, COUNT (emp_id) emp_noFROM department d INNER JOIN Employee eON d.dept_id=e.emp_idGROUP BY d.nameHAVING COUNT (emp_id)>2
What is the significance of "ORDER BY" in the following MySQL statement?
SELECT emp_id, fname, lnameFROM personORDER BY emp_id;
What will be the order of sorting in the following MySQL statement?
SELECT emp_id, emp_nameFROM personORDER BY emp_id, emp_name;