Sql Q1
Nov 5, 2024 · 1 min read · 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...
Join discussion