简体   繁体   中英

Libre Office Base Query

I'm running a Libre Office Base database to manage my co-op's membership directory. I'm trying to write a query to get a count of current membership, but I keep running into a SQL Status 37000, error code -16, Wrong data type: java.lang.IllegalArgumentException in statement [SELECT COUNT(*) FROM "Families" WHERE "Families"."Renewal Date" > '06/30/18'].

My query

SELECT COUNT(*) FROM "Families" WHERE "Families"."Renewal Date" > '06/30/18'

From everything I've seen and read, that query is formatted appropriately and I've checked the table name and column name, repeatedly.

You can use this construction for Date values

{D '2012-01-01'}

SELECT COUNT(*) FROM "Families" WHERE "Families"."Renewal Date" > {D '2018-06-30'}

the format '06/30/18' is ok only for Open Office

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM