We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
应用启动时显示: create table user (id number(19,0) not null, nickname varchar2(255 char), password varchar2(255 char), role number(10,0), username varchar2(255 char), primary key (id))
ORA-00903: 表名无效
user为oracle数据库的保留名称,无法使用该名称建表,导致建表失败。是否应用表名可以改成统一加前缀(例如scca_user)解决此问题?
The text was updated successfully, but these errors were encountered:
dyc87112
No branches or pull requests
应用启动时显示:
create table user (id number(19,0) not null, nickname varchar2(255 char), password varchar2(255 char), role number(10,0), username varchar2(255 char), primary key (id))
ORA-00903: 表名无效
user为oracle数据库的保留名称,无法使用该名称建表,导致建表失败。是否应用表名可以改成统一加前缀(例如scca_user)解决此问题?
The text was updated successfully, but these errors were encountered: