码迷,mamicode.com
首页 > 其他好文 > 详细

ORA-00907:missing right parenthesis

时间:2015-12-03 15:38:18      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!