Product of 2 columns in SQL

Solved
Dd_babou Posted messages 5 Status Member -  
 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 answers

  1. BlueMind Posted messages 583 Status Member 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