Trying to add a summary row of Grand Totals from the existing Weekly_Total column - (this is coming from a temp table,not that that matters) -
SELECT
Rep, Monday, Tuesday, Wednesday, Thursday, Friday, Weekly_Total
FROM #bl_reptemp3
and I just want to add one row under Weekly_Total, with a sum of thhat column - can't seem to figure it out.