Postgresql – How to delete the rows which can cast to date?
I have a varchar field and want to remove rows which can cast only to date value 01.01.2024 1.2 1 0.6 11.11.2024 I tried this script, but it's work incorrect select * from values where value > '01.01.1970' Result: value…