I need to change the name of a column in one of my tables.
The table is “judge”
The column is “Address” which needs to change to “Suburb”.
I’ve looked for answers and come up with:
alter table judge change address to ‘Suburb’;
The syntax error indicates it is near ‘to ‘Suburb’’; I’m not even sure I’m using the correct statement. Can you help, please?
