I know this may be simple to some but Im having a hard time with this. I simply want to add two columns together. My first number is "FirstShift" = 90, "SecondShift" = 100. Why am I not getting 190? I should see my 23 records all with different values 190 being my top record.
SELECT
[FirstShift] + [SecondShift] AS [Total Counted]
FROM
Thanks