ORA-00907:missing right parenthesis

时间:2015-12-03 15:37:14   收藏:0   阅读:457

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
 );


原文:http://blog.csdn.net/you23hai45/article/details/50161271

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!