If I have a select statement like this
SELECT
t.time,
<complicated computation> AS ticks,
<is it possible to access the value of the ticks row here?> as num
FROM
MyTable t;
Can I use the calculated value in column 2 as basis for calculations in column 3?