InterviewSolution
Saved Bookmarks
| 1. |
Consider the table 'Organization' : Table: OrganizationOrgCodeSalaryC10113,000C1025,000C1047,000C1054,000(i) With SQL, how can you find the number of rows (records) in the "Organization" table?(ii) What output will be displayed by the following SQL statement: SELECT AVG (Salary) FROM Organization; |
|
Answer» (i) Select Count (*) from Organization; (ii) AVG (Salary) : 7250. |
|