Skip to content

Tag: oracle

How to display Max Date amount in another column?

I want to derive column MSP_ADULT and MSP_CHILD based on the LATEST date record ADULT_AMT to be in MSP_ADULT and CHILD_AMT to be in MSP_CHILD column. I want to my out like below. Here is the code I am running, but it is not working. Answer So you want the last values of those conditional MAX’s. Try FIRS…

Bizarre Oracle Error: ORA-00936: missing expression

I’m working with a large, complex query. I added a simple date filter to the WHERE clause, and now I get ORA-00936: missing expression Removing the rest of the query, and just selecting id with this single date filter still produces the error – so at least that narrows it down. Looking online, app…