首頁  >  文章  >  資料庫  >  ORA-00922:选项缺失或无效_MySQL

ORA-00922:选项缺失或无效_MySQL

WBOY
WBOY原創
2016-05-27 13:46:282347瀏覽

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

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn