Home > front end >  Which SQL function can I use to add two numbers together?”
Which SQL function can I use to add two numbers together?”

Time:07-11

Which SQL function can I use to add two numbers together?”

CodePudding user response:

With the operator:

SELECT field1   field2 FROM Table

CodePudding user response:

Try this SELECT 10 9; If you need to add column values in a table, then you can go with SUM(). SELECT SUM(columnName) FROM tableName;

  •  Tags:  
  • sql
  • Related