0
create table grocery_types(
type_id int auto_increment primary key,
grocery_type varchar(50) not null,
remarks varchar(30)
);
我正在使用oracle sql開發人員IDE進行sql查詢,我在我的IDE執行此查詢,但它給出了一個錯誤,「缺少右括號」,並且在IDE中有一個紅色根據auto_increment關鍵字,請告訴我代碼中出現了什麼錯誤,謝謝。oracle自動增量缺少右括號
如果這是約12℃,很容易:'GENERATED BY DEFAULT ON NULL AS IDENTITY' TYPE_ID號。 – g00dy
在[Oracle手冊](https://docs.oracle.com/database/121/SQLRF/toc.htm)中,是否找到'auto_increment'? –