I have a csv column that has data with \r character. How can write a query to eliminate such data
SELECT rv FROM s3object s
this gives me:
I don't want such rows. Want to eliminate it all.
This query still returns me the same results
SELECT rv FROM s3object s where rv!='\r'