Arthmetic Operations with SELECT

tags: #sql

To compute arithmetic operations in a SELECT statement, you can use basic arithmetic operators such as:

SELECT column1 + column2 AS result // returned as a result-set of the operation
FROM table_name;
Powered by Forestry.md