-1

I'm writing this code

SELECT (Mathematics+Tech_comm.+Prog_C) As Total FROM sem1

and its throwing error:

#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '+Prog_C) As Total FROM sem1 LIMIT 0, 25' at line 1

Dharman
  • 30,962
  • 25
  • 85
  • 135

1 Answers1

-1

SELECT SUM(col1 + col2 + col3) as Total FROM table

blupointmedia
  • 564
  • 2
  • 10