Product of 2 columns in SQL

Solved
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. 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