Hi.
I have working query on postgre, but when I trying to use it in PQ, I get an error:
SELECT cast((TO_TIMESTAMP((SELECT "END_DATE" FROM "AO_60DB71_SPRINT" where "RAPID_VIEW_ID"=3343 and "STARTED" = 't' and "COMPLETE_DATE" is NULL) / 1000)) as date)
Stack Trace
org.postgresql.util.PSQLException: ERROR: syntax error at or near "'AO_60DB71_SPRINT'" Position: 54 at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2182) at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:1911) at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:173) at org.postgresql.jdbc2.AbstractJdbc2Statement.execute(AbstractJdbc2Statement.java:615) at
Hi Artashes,
Thanks for you question! Does this also happen if you remove the double quotes?
SELECT cast((TO_TIMESTAMP((SELECT END_DATE FROM AO_60DB71_SPRINT where RAPID_VIEW_ID=3343 and STARTED = 't' and COMPLETE_DATE is NULL) / 1000)) as date)
Regards, Felix (Scandio)
Felix, Hi!
I solved the problem as follows for postgre:
SELECT DATE(TO_TIMESTAMP((SELECT "END_DATE" FROM "AO_60DB71_SPRINT" where "RAPID_VIEW_ID"=3343 and "STARTED" = 't' and "COMPLETE_DATE" is NULL)/1000));
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.