the_begginer Asked: 2019-01-23 23:26:26 +0800 CST 如何为以下查询创建解释计划?我收到 ORA-00900:无效的 SQL 语句错误 0 我在尝试时收到 ORA-00900:无效的 SQL 语句错误。但是 sql 查询在没有解释的情况下运行良好。 询问:create or replace view TaskView as select T1.PersonID,T2.ID ,T2.Task from Table1 T1,Table2 T2 where T1.TaskID=T2.ID; explain oracle-11g-r2