ASP源码.NET源码PHP源码JSP源码JAVA源码DELPHI源码PB源码VC源码VB源码Android源码
当前位置:首页 >> 数据库 >> 其他数据库 >> ORA-00922: 选项缺失或无效

ORA-00922: 选项缺失或无效

来源:网络整理     时间:2015-12-17     关键词:

本篇文章主要介绍了"ORA-00922: 选项缺失或无效",主要涉及到方面的内容,对于其他数据库感兴趣的同学可以参考一下: 1、错误描述SQL> create table info_stu from select t.stu_id,t.stu_name,t.stu_age fr...

1、错误描述

SQL> create table info_stu from select t.stu_id,t.stu_name,t.stu_age from info t;

create table info_stu from select t.stu_id,t.stu_name,t.stu_age from info t

ORA-00922: 选项缺失或无效

2、错误原因

     由于用数据库表中某些字段创建一张新表,中间的连接是用AS,而不是用from

3、解决办法

SQL> create table info_stu as select t.stu_id,t.stu_name,t.stu_age from info t;

Table created

以上就介绍了ORA-00922: 选项缺失或无效,包括了方面的内容,希望对其他数据库有兴趣的朋友有所帮助。

本文网址链接:http://www.codes51.com/article/detail_249068.html

相关图片

相关文章