标签:
1、错误描述
2、错误原因
create table t_stu_info( id int(10) primary key, name varchar2(20) not null );
由错误提示,缺失右括号,提示的位置是int(10)处
3、解决办法
create table t_stu_info( id int primary key, name varchar2(20) not null );
ORA-00907:missing right parenthesis
标签:
原文地址:http://blog.csdn.net/you23hai45/article/details/50161271