Hi I was copying a employees table in HR
schema with query:
Create table copy_employees as ( select last_name,salary*12 from employees);
But the error shows that salary needs to be aliased.
After I did salary*12 as sal
it worked.
My question is why is this aliasing needed?