Product of 2 columns in SQL

Solved
Dd_babou Posted messages 5 Status Membre -  
 tresor -
Hello,
I would like to know how to return, in an SQL query, the product of 2 elements:
select a,b, multiplication of a by b from table ...
using something other than the exponential of the log.

7 réponses

BlueMind Posted messages 583 Status Membre 159
 
Hi,

I think it's quite simple

SELECT a, b, a * b FROM ...

--
Why bother moving mountains when it's so easy to go over them?
9