Sql Q1
1.) Consider the Employee table and write SQL command to get the following. A. Write a query to display EName and Sal of employees whose salary are greater than or equal to 2200? ANS: SELECT ename,sal FROM employee WHERE sal>=2200;
B. Write a query t...
startparks.hashnode.dev1 min read