gpt4 book ai didi

sql - 错误(ORA-00923 : FROM keyword not found where expected)

转载 作者:行者123 更新时间:2023-12-03 01:33:32 24 4
gpt4 key购买 nike

    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"

手册中的更多详细信息:

关于sql - 错误(ORA-00923 : FROM keyword not found where expected),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18830624/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com