I have a colum that is showing a date as a string. It comes through as '07/01/2021 01:03:47 AM' I am trying to query so that I can pull all data where the date is greater than '07/01/2021 01:03:47 AM'.
I have tried select * from datatable where date> '07/01/2021 01:03:47 AM'
I also tried select * from datatable where cast(coldate as timestamp)> '07/01/2021 00:00:00'
but because it is a string it won't pull the correct view. I will show a random collection of data due to the string.