3
How do I add a new column between two existing columns in my Postgresql database?
In Mysql I use the function AFTER
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;
The
AFTER
is a Mysql-only instruction.– gmsantos