Saved Bookmarks
| 1. |
Write a suitable SQL statement to find out the total number of employees from EMP table. |
|
Answer» SELECT count(empname) from EMP; |
|