How can I print the 'ID' column twice. I've already got it in the start of the table, and also want it to also print out as the last column again for easy viewing purposes.
ALTER TABLE EMPLOYEES
ADD ID int;
'ID already exists'
Also, when I update 'ID' I want both columns to be updated at once.
Thank you