This is truly a rudimentary aggregate SUM(). I recommend reading the RDBMS documentation for aggregate functions and GROUP BYbecause it is pretty basic.
SELECT
SUM(Tax) AS sumtax,
State
FROM table
GROUP BY State
ORDER BY SUM(Tax) DESC
Note that some RDBMS (e.g. MySQL) will allow you to use the column alias in ORDER BY, as in:
ORDER BY sumtax DESC
... where others (e.g. SQL Server, if I remember correctly) will not, and you should also use its total value.
: , SQL Server, , ORDER BY. , GROUP BY, ...