Didn't quite follow what you meant by "columns only by having the summation on same FIPS". Also, did you want the other columns to show up in the output - if so how should they be aggreated? If this query does not give you what you want, can you post the desired output?SELECT
FIPS,
SUM(all_qty_yr) AS Total_all_qty_yr
FROM
Tbl
GROUP BY
FIPS;