|
|
|
|
|
by cess11
391 days ago
|
|
Or you nest your queries: select second from (select 42 as first, (select 69) as second);
Intermediate steps won't be stored but until queries take a while to execute it's a nice way to do step-wise extension of an analysis.Edit: It's a rather neat and underestimated property of query results that you can query them in the next scope. |
|
Even oldschool
Gives me the same benefit.