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


相关文章:

  • 2021-08-29
  • 2021-06-07
  • 2022-12-23
  • 2022-12-23
  • 2021-09-03
猜你喜欢
  • 2021-10-08
  • 2022-12-23
  • 2022-12-23
  • 2021-05-26
  • 2022-12-23
相关资源
相似解决方案