doing:
select t1*t2 as t, t*1 from (select target1,target2 from signals)
Gives:
column "t" does not exist
How can I refer to t at the same time I am declaring it in the select query?
doing:
select t1*t2 as t, t*1 from (select target1,target2 from signals)
Gives:
column "t" does not exist
How can I refer to t at the same time I am declaring it in the select query?