我正在尝试向表中添加一列,以下是我的命令:
alter table history add column start type timestamp;
我收到以下错误:
syntax error at or near "timestamp"
这个命令怎么不正确?
答案 0 :(得分:0)
删除单词type
,它应该是:
alter table history add column start timestamp
此外,start
是PG中的非保留关键字(但在SQL99标准中保留),因此可能不是一个好的列名。