-
Referencing new column
For example:
t:([] name:`Dent`Beeblebrox`Prefect; iq:98 42 126)
select name, iq2:iq%100 from t where iq2>1
I would like to reference the newly created “iq2” column in the where clause, but the above command fails. How to modify it to make it work?
Log in to reply.