错误:添加列时“timestamp”处或附近的语法错误

时间:2015-08-11 19:33:55

标签: postgresql

我正在尝试向表中添加一列,以下是我的命令:

alter table history add column start type timestamp;

我收到以下错误:

syntax error at or near "timestamp"

这个命令怎么不正确?

1 个答案:

答案 0 :(得分:0)

删除单词type,它应该是:

alter table history add column start timestamp

此外,start是PG中的非保留关键字(但在SQL99标准中保留),因此可能不是一个好的列名。