J
Jean
Hi,
I have to do a product on a column. I need performance so I use this
technique:
SELECT column_name1, POWER(10,SUM(LOG10(column_name2))) AS Product
FROM table_name
GROUP BY column_name1
the problem is that the log ( 0 ) is impossible...
anyone has already face that problem?
Thanks everybody!
I have to do a product on a column. I need performance so I use this
technique:
SELECT column_name1, POWER(10,SUM(LOG10(column_name2))) AS Product
FROM table_name
GROUP BY column_name1
the problem is that the log ( 0 ) is impossible...
anyone has already face that problem?
Thanks everybody!