Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
Is there a way to unset a previous alias setting ?
For ex.:
ALIAS a AS alpha, b as beta;
LOAD a, b FROM ... ;
--> table result with fields alpha and beta
[unset alias]
LOAD a, b FROM ... ;
--> table result with fields a and b
Thanks
Hi
No unalias command is available, you either have to use AS in the first load or place the second load before the ALIAS command
LOAD a as alpha, b as beta ...
But I guess you created for us an easy example for your much more complicated loads ...
Juerg
How about another ALIAS :
ALIAS a as a, b as b, ... :
Haven't tried it, but I think it should work...
Oleg