How do I add a new column between two columns already in my database in PostgreSQL?
In MySQL do I use the AFTER
function to add one column after another, and in PostgreSQL? How do I do this?
SQL
ALTER TABLE nota ADD hota_utc VARCHAR(2) AFTER hora_entrada_saida;