Question : Add three colums together in sql to get a total

i have 3 colums i want to sun to get a total. I will create a new colum called total
and add the columns together  how would i write this into the query

Answer : Add three colums together in sql to get a total

Hi,
sorry correction in my last post

SELECT A,B,C, A+B+C TOTAL FROM TableName
Random Solutions  
 
programming4us programming4us