web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Automate / POSTGRES ODATA time co...
Power Automate
Unanswered

POSTGRES ODATA time comparison

(0) ShareShare
ReportReport
Posted on by 8

I am trying to get all records from a postgres database where the date_completed (timestamp without timezone) is between startoftoday and endoftoday. However I cannot get the ODATA query for less than or greater than to work. I keep getting this error. 

 

{
 "status": 400,
 "message": "We cannot apply operator < to types DateTime and DateTimeZone.\r\n inner exception: We cannot apply operator < to types DateTime and DateTimeZone.\r\nclientRequestId: 12f42943-0acf-4b4a-a482-3d72ca9dbf98",
 "source": "postgresql-eus.azconn-eus.p.azurewebsites.net"
}

The odata filter is equal to 

utcnow('yyyy-MM-ddTHH:mm:ssZ’) lt date_completed

 This is the odata filter after the expressions run

2018-09-06T08:07:16Z lt date_completed
Categories:
I have the same question (0)
  • v-yuazh-msft Profile Picture
    Microsoft Employee on at

    Hi @elksson,

     

    Could you please share a screenshot of the configuration of your flow?

     

    Please take a try to add a "Filter array" action in your flow replace of the ODATA query, the flow should as below:

    Capture.PNG

     

     

    Best regards,

    Alice

  • elksson Profile Picture
    8 on at

    Using filter contains '2018-09-05' works but since the table has over a million rows the query takes 22 mins to execute if I don’t use the database engine to filter the results.

     

    I will try the filter as you suggested but im sure if it does work the same issue will exist as the table just has too many rows. 

  • elksson Profile Picture
    8 on at

    IMG_0977.pngIMG_0978.png

  • degvalentine Profile Picture
    195 on at

    I'm in the same boat. My research leads me to believe there is no solution. I hope I'm wrong and am still searching...

     

    • our PG timestamp without time zone columns are considered "DateTime" fields in OData
    • OData intentionally dropped support for DateTime in some prev update (many years ago)
    • OData community is/was livid (https://github.com/OData/WebApi/issues/136) but apparently there's no intent to restore it

    I believe our only hope is that Flow will add support for "Execute a query" to on-prem gateways. Here's a link to the community topic. Add your vote!

  • ialastairhunter Profile Picture
    10 on at

    @degvalentineI was able to solve this however it was not an ideal query. You will need to use the MONTH, DAY, and YEAR Functions in combintation with the greate than and less than operators. 

     

    For example if you wanted to compare the date was equal to 04/04/2013

    month(DATE) eq 04 AND day(DATE) eq 04 AND year(DATE) eq 2013

     

  • ialastairhunter Profile Picture
    10 on at

    @degvalentine 

     

    There are a few aditional options

    1 - Create an Azure Function app that would take a HTTP Post with a sql query string and return JSON Object with the query results. Then use an HTTP Connector in flow to pass a SQL Query to the azure function app. 

    2 - Use an Azure Logic app instead of flow and you can call an azure function app, or execute some javascript right from the azure logic app. 

     

  • degvalentine Profile Picture
    195 on at

    @ialastairhunter  2 great suggestions - Thank you!

     

    The OData workaround was a bit painful as you suggested, but it works. Doing a "my_ts >= yyyy-mm-dd" filter ended up looking like this (for any that might find this thread later):

    year(my_ts) gt yyyy or (year(my_ts) eq yyyy and (month(my_ts) gt mm or (month(my_ts) eq mm and day(my_ts) ge dd)))

    I'll try the Azure Function next and post results (and probably code).

  • degvalentine Profile Picture
    195 on at

    Couldn't use Azure Functions to access my database because it's on-prem and I don't want to pay for a VPN Gateway.

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Leaderboard > Power Automate

#1
David_MA Profile Picture

David_MA 251 Super User 2026 Season 1

#2
Haque Profile Picture

Haque 239

#3
Expiscornovus Profile Picture

Expiscornovus 220 Most Valuable Professional

Last 30 days Overall leaderboard