Preview:
CREATE OR REPLACE TEMPORARY TABLE TBL_NUMBER
(
	NUM FLOAT
)
AS
SELECT
	*
FROM
	VALUES(2),(3),(4);

SELECT
    EXP
    (
      SUM
      (
        LN(NUM)
      )
    ) AS RESULT
FROM
	TBL_NUMBER
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter