I need query to retrieve all entities from database who has 00 minutes in TIME column which is represented as LocalDateTime?
Check here what i need -> https://i.stack.imgur.com/22Ufc.png
Thanks in advance.
You could use EXTRACT():
SELECT * FROM fb_data WHERE EXTRACT(MINUTE FROM "time") = 0;
2.1m questions
2.1m answers
60 comments
57.0k users