在PostgreSQL中找不到数据类型

时间:2012-01-13 10:36:56

标签: database postgresql

我正在尝试使用PostgreSQL创建数据库表,但我无法找到架构中提到的数据类型。请帮帮我。谢谢。 enter image description here

1 个答案:

答案 0 :(得分:4)

AUTO_INCREMENT听起来像mysql类型。您希望在serial中使用postgresql用于相同目的。

CREATE TABLE tz_todo (
    "id" serial primary key,
    position bigint,
    "text" varchar(255),
    dt_added timestamp
);