How can we calculate total salary expenditure?
SUM() calculates the total numerical summation of a specified column across all matching rows.
Payroll totals, quarterly revenue calculations, inventory value summation.
SELECT SUM(salary) AS total_salary
FROM employees;Practice typing production-grade SQL code for SUM.