SQL to remove duplicate records, ignoring non-letters and numbers
I am trying to create a SQL query that only leaves "yahoo finance" and deletes the rest in the next dataset. This dataset is part of the InnoDB table.
yahoo/finance
yahoo.finance
yahoo. finance
yahoo-finance
yahoo+finance
yahoo finance
yahoo .finance
yahoo . finance
yahoo - finance
yahoo + finance
I tried to write a SQL function that removes duplicates while ignoring these characters: /.++-. However, I have failed and I appreciate any help. Thank!
+3
source to share
3 answers