On 13/08/12 23:30, Greg Hennessy wrote:
>
> How do I rename the column named ?column? to be something else?
>
>
> PS1=# alter table tmp_00 rename column `?column?` to nest1;
> ERROR: syntax error at or near "`?" at character 34
> LINE 1: alter table tmp_00 rename column `?column?` to nest1;
> ^
Quote using ":
PS1=# alter table tmp_00 rename column "?column?" to nest1;
/Jens Henrik