2. Write a query to display details of employees who are not getting commission from table Empl. sa 11 ip chapter 14 / PythonCSIP CS IP SELECT * FROM Empl WHERE comm IS NULL; 2. Write a query to display details of employees who are not getting commission from table Empl. Read More »
1. Write a query to display EName and Sal of employees whose salary is greater than or equal to 2200 from table Empl. sa 11 ip chapter 14 / PythonCSIP CS IP SELECT ename, sal FROM Empl WHERE sal>=2200; 1. Write a query to display EName and Sal of employees whose salary is greater than or equal to 2200 from table Empl. Read More »