up vote 4 down vote favorite
share [g+] share [fb]

Is it possible to change the natural order of columns in Postgres 8.1?

I know that you shouldn't rely on column order - it's not essential to what I am doing - I only need it to make some auto-generated stuff come out in a way that is more pleasing, so that the field order matches all the way from pgadmin through the back end and out to the front end.

link|improve this question

50% accept rate
feedback

6 Answers

up vote 8 down vote accepted

You can actually just straight up change the column order, but I'd hardly recommend it, and you should be very careful if you decide to do it.

eg.

# CREATE TABLE test (a int, b int, c int);
# INSERT INTO test VALUES (1,2,3);
# SELECT * FROM test;
 a | b | c 
---+---+---
 1 | 2 | 3
(1 row)

Now for the tricky bit, you need to connect to your database using the postgres user so you can modify the system tables.

# SELECT relname, relfilenode FROM pg_class WHERE relname='test';
 relname | relfilenode 
---------+-------------
 test_t  |       27666
(1 row)

# SELECT attrelid, attname, attnum FROM pg_attribute WHERE attrelid=27666;
 attrelid | attname  | attnum 
----------+----------+--------
    27666 | tableoid |     -7
    27666 | cmax     |     -6
    27666 | xmax     |     -5
    27666 | cmin     |     -4
    27666 | xmin     |     -3
    27666 | ctid     |     -1
    27666 | b        |      1
    27666 | a        |      2
    27666 | c        |      3
(9 rows)

attnum is a unique column, so you need to use a temporary value when you're modifying the column numbers as such:

# UPDATE pg_attribute SET attnum=4 WHERE attname='a' AND attrelid=27666;
UPDATE 1
# UPDATE pg_attribute SET attnum=1 WHERE attname='b' AND attrelid=27666;
UPDATE 1
# UPDATE pg_attribute SET attnum=2 WHERE attname='a' AND attrelid=27666;
UPDATE 1

# SELECT * FROM test;
 b | a | c 
---+---+---
 1 | 2 | 3
(1 row)

Again, because this is playing around with database system tables, use extreme caution if you feel you really need to do this.

This is working as of postgres 8.3, with prior versions, your milage may vary.

link|improve this answer
1  
This is very tricky, several system object refer to a column number. When you flip columns 2 and 3, you will be in trouble when an object needs something from column 2. This is now nr. 3 and your database is now corrupt. Take a look at pg_constraint, this can be a database saver. – Frank Heikens Mar 27 '10 at 18:10
This way you lose all the data in your tables. – Peter Eisentraut Sep 16 '11 at 3:16
feedback

As the other answers mentioned, you cannot change the order of columns, that's up to postgres. You can (and should!) solve your problem with a view. For the purposes of your reporting query, it will look just like a table. Something like:

create view my_view as
  select * from my_table
  order by some_col;
link|improve this answer
feedback

If your database is not very big and you can afford some downtime then you can:

  1. disable write access to the database
    this is essential as otherwise any changes after starting the next point will be lost
  2. pg_dump --create --column-inserts databasename > databasename.pgdump.sql
  3. edit apropriate "CREATE TABLE" statement in databasename.pgdump.sql
    If the file is too big for your editor just split it using "split" command, edit, then assemble back using "cat"
  4. drop database databasename
    You do have a recent backup, just in case, do you?
  5. psql --single-transaction -f databasename.pgdump.sql
    If you don't use "--single-transaction" it will be very slow

If you use so called large objects make sure they are included in the dump. I'm not sure if they are by default in 8.1.

link|improve this answer
feedback

Specifying the column order in the query is the only reliable (and sane) way. That said, you can usually get a different ordering by altering the table as shown in the example below as the columns are usually (not guaranteed to be) returned in the order they were added to the table.

postgres=# create table a(a int, b int, c int);
CREATE TABLE
postgres=# insert into a values (1,2,3);
INSERT 0 1
postgres=# select * from a;
 a | b | c
---+---+---
 1 | 2 | 3
(1 row)

postgres=# alter table a add column a2 int;
ALTER TABLE
postgres=# select * from a;
 a | b | c | a2
---+---+---+----
 1 | 2 | 3 |
(1 row)

postgres=# update a set a2 = a;
UPDATE 1
postgres=# alter table a drop column a;
ALTER TABLE
postgres=# alter table a rename column a2 to a;
ALTER TABLE
postgres=# select * from a;
 b | c | a
---+---+---
 2 | 3 | 1
(1 row)

postgres=#
link|improve this answer
I'm not writing a query. I'm using a product that auto-generates queries and forms and stuff. I can edit it after it has been generated, but I'd rather be able to regenerate and not have to edit again. – rjmunro Sep 24 '08 at 10:52
Then ask the product provider about a way to specify the column ordering (or ask they add it as a feature) – Vinko Vrsalovic Sep 24 '08 at 11:02
IIRC Postgresql developers don't want to add this feature :( – grom Sep 24 '08 at 11:41
feedback

I have asked that question in pgsql-admin in 2007. Tom Lane himself declared it practically unfeasible to change the order in the catalogs. Clarification: .. for users, with the present tools (still true for v9.1). Does not mean, it could not be implemented. IMO, it should be.
http://archives.postgresql.org/pgsql-admin/2007-06/msg00037.php

link|improve this answer
"The idea of allowing re-ordering of column position is not one the postgresql developers are against, it is more a case where no one has stepped forward to do the work." quote from wiki.postgresql.org/wiki/Alter_column_position In case someone wants to add that functionality... the starting steps have been outlined at the end of the article. – knowledge_is_power Sep 16 '11 at 10:13
feedback

Unfortunately, no, it's not. Column order is entirely up to Postgres.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.