- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 JOIN 函数从架构中的几个不同表访问信息。在我在 TABLE3 上添加 FULL OUTER JOIN 之前,代码工作正常。我对 Oracle 还很陌生,所以尽管我一直在阅读它,但到目前为止我还无法指出我的错误。
这里值得注意的一点是,这个相同的查询在 Oracle SQL Developer 上完美运行,但当我在 Java (Netbeans IDE) 中与其余代码一起运行它时,会抛出缺少关键字错误。两者是否有不同的语法要求?
这是我的代码:
SELECT
t2.A1 as temp1,
t2.A2 as temp2,
t2.A3 as temp3,
t2.A4 as temp4,
t2.A5 as temp5,
t2.A6 as temp6,
t2.A7 as temp7,
t2.A8 as temp8,
t3.A9 as temp9,
t2.A10 as temp10,
t2.A11 as temp11,
t2.A12 as temp12,
t2.A13 as temp13,
t2.A14 as temp14,
t2.A15 as temp15,
t2.A16 as temp16,
t2.A17 as temp17,
t2.A18 as temp18,
t2.A19 as temp19,
t2.A20 as temp20,
t2.A9 as temp21,
t2.A21 as temp22,
t2.A22 as temp23,
t1.deets as deets
FROM SCHEMA1.TABLE2 t2
FULL OUTER JOIN
SCHEMA1.TABLE3 t3
ON t2.A1 = t3.A23
LEFT OUTER JOIN
(select A24, LISTAGG(A25, ',') WITHIN GROUP (ORDER BY A26) as deets
FROM SCHEMA1.NA av
WHERE (A26 = 'TYPE1' OR A26 = 'TYPE2')
Group by A24) t1
ON t1.A24 = t2.A1
WHERE
(t2.A2 between (TO_CHAR (SYSDATE, 'YYYYMMDD') || '000000')
AND (TO_CHAR (SYSDATE+15, 'YYYYMMDD') || '000000')
OR t2.A11 between (TO_CHAR (SYSDATE, 'YYYYMMDD') || '000000')
AND (TO_CHAR (SYSDATE+15, 'YYYYMMDD') || '000000'))
AND TRIM(t2.A27) IS NOT NULL
AND t2.A28 = 'SOMESPEC'
AND t2.A3 = 'SOMEOTHERSPEC'
order by temp2 desc;
这是我收到的错误:
[DEBUG: 2018-11-20 08:58:24.426] [query]
java.sql.SQLException: ORA-00905: missing keyword
如有任何建议,我们将不胜感激
编辑:这也是 Java 中的查询:
String query = "SELECT "
+ "t2.A1 as temp1, "
+ "t2.A2 as temp2, "
+ "t2.A3 as temp3, "
+ "t2.A4 as temp4, "
+ "t2.A5 as temp5, "
+ "t2.A6 as temp6, "
+ "t2.A7 as temp7, "
+ "t2.A8 as temp8, "
+ "t3.A9 as temp9, "
+ "t2.A10 as temp10, "
+ "t2.A11 as temp11, "
+ "t2.A12 as temp12, "
+ "t2.A13 as temp13, "
+ "t2.A14 as temp14, "
+ "t2.A15 as temp15, "
+ "t2.A16 as temp16, "
+ "t2.A17 as temp17, "
+ "t2.A18 as temp18, "
+ "t2.A19 as temp19, "
+ "t2.A20 as temp20, "
+ "t2.A9 as temp21, "
+ "t2.A21 as temp22, "
+ "t2.A22 as temp23, "
+ "t1.deets as deets "
+ "FROM SCHEMA1.TABLE2 t2 "
+ "FULL OUTER JOIN "
+ "SCHEMA1.TABLE3 t3"
+ "ON t2.A1 = t3.A23"
+ "LEFT OUTER JOIN "
+ "(select A24, LISTAGG(A25, ',') WITHIN GROUP (ORDER BY A26) as deets "
+ "FROM SCHEMA1.NA av "
+ "WHERE (A26 = 'TYPE1' OR A26 = 'TYPE2') "
+ "Group by A24) t1 "
+"ON t1.A24 = t2.A1 "
+ "WHERE "
+ "(t2.A2 between (TO_CHAR (SYSDATE, 'YYYYMMDD') || '000000') "
+ "AND (TO_CHAR (SYSDATE+15, 'YYYYMMDD') || '000000') "
+ "OR t2.A11 between (TO_CHAR (SYSDATE, 'YYYYMMDD') || '000000') "
+ "AND (TO_CHAR (SYSDATE+15, 'YYYYMMDD') || '000000')) "
+"AND "
+ "TRIM(t2.A27) IS NOT NULL "
+ "AND t2.A28 = 'SOMESPEC' "
+ "AND t2.A3 = 'SOMEOTHERSPEC'"
+ "order by temp2 desc";
最佳答案
在行中添加尾随空白
+ "SCHEMA1.TABLE3 t3"
+ "ON t2.A1 = t3.A23"
关于java - ORA-00905 : missing keyword error on query that runs fine in SQL Developer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53395910/
以下哪一个更好(EJB 3 JPA) //查询 一个)。 getEntityManager().createQuery("select o from User o"); //命名查询,其中 findA
也许其他人和我有同样的问题。我遇到了错误: Cannot execute queries while other unbuffered queries are active.Consider usin
我的代码 package com.tl666.elasticsearch.pojo; import lombok.AllArgsConstructor; import lombok.Data; imp
简短版:我想查询另一个查询的结果,以便选择更有限的结果集。但是,添加 where 子句会重写第一个查询而不是处理结果,因此我得不到我需要的答案。 详情:我有两个模型,支票和蜱虫。检查 has_many
我正在尝试使用 Doctrine 在 Symfony 框架中执行原始查询。 这是代码: class MessagesHandler { /** @var \Doctrine\Common\Pe
我正在运行以下两个语句: 首先是 A) 它做它需要做的事情并工作: SELECT itemColumn ,valueColumn ,label FROM rstCombinedChartD
我有一个脚本来查询数据库以获取订单信息,然后查询该查询以获取订单总数。代码看起来像这样。 SELECT oi.OrderQty, oi.ItemPrice FROM Ord
这个问题在这里已经有了答案: MySQL Insert query doesn't work with WHERE clause (31 个答案) 关闭 4 年前。 我正在从 php 更新数据库中的
在使用 Skygear JS SDK 时,查询是否返回数组? readDummy: function(){ const Test = skygear.Record.extend('
我想在一个表上运行 MySQL 查询,然后在该表上运行子查询。我有一个对象列表。每个对象都有一个主要版本和一个次要版本。对于一个对象,我试图找到该对象的“最后版本”:这意味着我想找到该对象的最大值(主
我正在尝试在 pod 中启动 prometheus,并在 k8s 中使用持久卷。 当我启动 pod 时,我看到: level=info ts=2021-09-12T13:58:13.120Z ca
基本上,我从 kube-prometheus-stack 安装了 Prometheues-Grafana使用提供的 helm chart repo prometheus-community # hel
是否可以根据另一个查询的结果在 TFS 2010 中创建新查询? 例如,一个(父)查询选择位于某个工作项下的所有工作项(假设 ID=5 的工作项)。现在我想创建其他查询,从第一个查询的结果中选择所有错
在 Delphi 中,每当我使用 TQuery 对数据库执行 SELECT 时,我都会在 Query.Open 后面加上 try..finally,并在finally 部分中使用 Query.Clos
我只是从一台服务器移动到另一台服务器。我的脚本在旧服务器上运行良好,但是我开始在新服务器上收到此错误: "Declaration of ezSQL_mysql::query() should be c
我想问一下有什么区别 for row in session.Query(Model1): pass 和 for row in session.Query(Model1).all():
如何使用注释通过spring-data-elasticsearch进行@Query(value =“{” query“:”“}”)的聚合? 最佳答案 您不能使用@Query注释来完成此操作,该注释的唯
我有一个对可变字符串执行 LIKE 条件的查询: 当变量包含一个包含单引号的单词时,返回一些结果,但不是全部: SELECT ID FROM MyQoQ
我有我的查询范围,它返回数百条记录。我需要在 Controller 中使用不同的过滤器查询这个集合。 我怎样才能做到这一点?可能吗? 查询范围: Client::join('transactions_
我有这样的数据库模式 用户 编号 初中生 文档 编号 标题 user_id(用户的外键) 模式(可以接受 PUBLIC 或 PRIVATE) 我想检索所有公开的文档和属于给定用户(矩阵)的所有文档 我
我是一名优秀的程序员,十分优秀!