I'm trying to add a column named order to my table. I realize that order is a reserved word in SQL. So, how do I do it? My command:
alter table mytable add column order integer;
I've also tried:
alter table mytable add column 'order' integer;
PostgreSQL 9.1.