Ascalonian
Programmer
I was just curious if there is a difference between:
or
Is there any advantage to using the AS keyword?
Code:
SELECT column_a AS some_column
FROM DUAL;
or
Code:
SELECT column_a some_column
FROM DUAL;
Is there any advantage to using the AS keyword?