Oracle子查询将运行,但不会运行整个查询

时间:2017-01-19 20:49:55

标签: oracle

子查询可以自行运行。但整个查询都无法正常工作。我得到的错误是SQL command not properly ended,这是无用的。我已经尝试过编辑它一百次并搜索提示,但无法弄明白......

select table_name, sum(has_last_mod_time) as asdf
from 
  (
    select
      table_name,
      case when lower(column_name) = 'last_modified_time' then 1 else 0 end  has_last_mod_time
    from all_tab_columns
  ) 
group by  table_name
) as sdfsdf

1 个答案:

答案 0 :(得分:2)

Oracle不支持将.dark-tab { background-color: #C2C3C4 !important; } 用于表别名。

AS

中删除as

但是你的查询还有更多问题:

您还有一个as sdfsdf太多而且)位置错误。

group by