ORA - 00933 confusion with inner join and quot;asquot;(ORA - 00933 与内部连接和“as混淆)
问题描述
我有一个使用 inner join
从两个表中获取数据的查询,但我收到错误 SQL 命令未正确结束
,as"下有一个星号:
I have this query of getting data from two tables using an inner join
, but I get the error SQL command not properly ended
with an asterix under "as":
select P.carrier_id, O.order_id, O.aircraft_id, O.quantity
from orderline AS O
inner join purchaseorder AS P
on O.order_id = P.carrier_id;
the error:
from orderline AS O ( with an asterix under AS)
Error at line 2
Ora-00933: SQL command not properly ended.
关于这一点,我认为 AS
不会成为问题,因为它只是引用了一个别名,但我很困惑为什么会出现这种情况.
In regards to this I thought that AS
wouldn't be an issue as it's just referencing an alias, but I'm so confused as to why this is coming up.
推荐答案
去掉AS
关键字
select
P.carrier_id,
O.order_id,
O.aircraft_id,
O.quantity
from
orderline O
inner join purchaseorder P
on O.order_id = P.carrier_id;
这篇关于ORA - 00933 与内部连接和“as"混淆的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:ORA - 00933 与内部连接和“as"混淆


- 导入具有可变标题的 Excel 文件 2021-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 更改自动增量起始编号? 2021-01-01
- SQL 临时表问题 2022-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01