Hi all,
I am completly new to teradata. I have a query to run in SQL assistant which has some calculated columns. I wonder if order of the columns matter. For example when 1st column depends on 2nd column like
Select
A1 - A1NC AS A1C,
SUM(CASE WHEN IND = 1 THEN 1 ELSE 0 END) AS A1,
B1
From table
↧