错误(ORA-00923:在预期位置找不到FROM关键字)

select

country_olympic_name,

SUM(part_gold) as ‘Number of Gold Medals’

From

games.country,

games.participation

where

participation.country_isocode = country.country_isocode

group by

country_olympic_name;

我一直收到错误ORA-00923:FROM关键字未在预期位置找到,并且不知道为什么,请帮助

回答:

标识符需要用双引号(")引起来。单引号(')表示字符 (不是“名称”)。

因此,您需要使用:

SUM(part_gold) as "Number of Gold Medals"

以上是 错误(ORA-00923:在预期位置找不到FROM关键字) 的全部内容, 来源链接: utcz.com/qa/398526.html

回到顶部