List the emps whose jobs are same as allen
WebD)Create a view to contain the details of employees whose job is same as ‘ALLEN’s. create view v3 from emp where job=(select job from emp where ename='ALLEN'); … WebSQL>SELECT ENAME FROM EMP WHERE TO_CHAR (HIREDATE,'DD')=DEPTNO 142) Display those employees name as follows A ALLEN B BLAKE SQL> SELECT SUBSTR (ENAME,1,1),ENAME FROM EMP; 143) List out the employees ename,sal,PF (20% OF SAL) from emp; SQL>SELECT ENAME,SAL,SAL*.2 AS PF FROM EMP;
List the emps whose jobs are same as allen
Did you know?
Web19 nov. 2011 · the emps who are either ‘CLERK’ or ‘ANALYST’ in the Desc order. A) select * from emp where job = ‘CLERK’ or job = ‘ANALYST’ order by job desc; List the emps who joined on 1-MAY-81,3-DEC-81,17-DEC-81,19-JAN-80 in asc order of seniority. A) select * from emp where hiredate in (’01-may-81’,’03-dec-81’,’17-dec-81’,’19-jan-80’) Web16 jan. 2024 · 5.Display all the employees whose job is same as scott and allen. SELECT * FROM EMP WHERE JOB IN (SELECT JOB FROM EMP WHERE ENAME IN …
Web28 sep. 2024 · 1. QUESTIONS on SUBQUERY 1.DISPLAY ALL THE EMPLOYEES WHOSE DEPARTMET NAMES ENDING 'S' 2.QUERY TO DISPLAY THE EMPLOYEE … Web24 nov. 2015 · List the emps Whose Jobs are same as MILLER or Sal is more than ALLEN. SELECT ename, JOB,SAL FROM EMP where sal > (select sal from emp where lower …
WebList All The Employees Whose Commission Is Null And Working As Clerk List All The Employees Who Don’t Have A Reporting Manager In Deptno 10 Or 30 List All The Salesmen In Dept 30 With Sal More Than 2450 List All The Analyst In Dept Number 20 And Having Salary Greater Than 2500 List All The Employees Whose Name Starts With ‘M’ … Web12. List the emps in the asc order of Designations of those joined after the second half of 1981. A) select * from emp where hiredate > (’30-jun-81’) and to_char(hiredate,’YYYY’) = …
Web28 sep. 2024 · 1. QUESTIONS on SUBQUERY 1.DISPLAY ALL THE EMPLOYEES WHOSE DEPARTMET NAMES ENDING 'S' 2.QUERY TO DISPLAY THE EMPLOYEE NAMES WHO IS HAVING MAXIMUM SALARY IN DEPT NAME "ACCOUNTING" 3.QUERY TO DISPLAY THE DEPT NAME WHO IS HAVING HIGHEST COMMISSION 4. QUERY …
WebList the emps whose jobs same as ALLEN Or SMITH. SQL> Select * from Emp where job in (select distinct job from emp where ename in ('ALLEN','SMITH')) and ename not in … significant audit findingsWebShare free summaries, lecture notes, exam prep and more!! the punk syndromeWeb15 jul. 2014 · List the Empno, Ename, Sal, Daily sal of all emps in the asc order of Annsal. select empno,ename,sal,sal/30,sal*12 as annsal from emp order by annsal asc 9. Display the Empno, Ename, job, Hiredate, Exp of all Mgrs select empno,ename,job,hiredate,datediff (yy,hiredate,getdate ())as exps from emp where job='manager' 10. the punster\u0027s pocket-bookWeb4 apr. 2016 · 6. A request to list "Number of employees in each department" or "Display how many people work in each department" is the same as "For each department, list the number of employees", this must include departments with no employees. In the sample database, Operations has 0 employees. So a LEFT OUTER JOIN should be used. significant at the 95 confidence levelWeb22 nov. 2024 · is not the details of the employees whose salary is more than the employee like is all that is not have the column of Porifera ️‼️. significant authority testWeb13 jun. 2012 · 54.List the emps Whose Jobs are same as MILLER or Sal is more than ALLEN. A) select * from emp where job = (select job from emp where ename = … the punk stuffWeb41.Display the Empno, Ename, Sal, Dname, Loc, Deptno, Job of all emps working at CJICAGO or working for ACCOUNTING dept with Ann Sal>28000, but the Sal should not … the punks trilogy