Is there any error in the following query?SELECT emp_id, title, start_date, fname, fed_idFROM personORDER BY RIGHT (fed_id, 3);
What will be the result of the query given below?SELECT emp_id,βACTIVEβ AS STATUS,emp_id * 3.14 AS emp_pi,UPPER (lname) AS last_nameFROM employee;
What will be the output of a query given below?SELECT person_id, Fname, lnameFROM person;
In the following query, what does βperson_idβ stands for?CREATE TABLE person (person_ id SMALLINT UNSIGNED, fname VARCHAR(20), lname VARCHAR(20) , CONSTRAINT pk_person PRIMARY KEY (person_id));