欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

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

程序员文章站 2022-04-24 08:47:33
...
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
相关标签: 缺失