How we can delete multiple rows having columns from a db? Suppose db has following data (id, list_name, user) and list_name has values as:
Owner-aaa
coowner-aaa
owner-aaa
subowner-aaa
How we can delete the rows having "Owner-aaa" and "owner-aaa" which are duplicates?
Can we add something in this query here:
delete from <table_name> where list_name = 'owner-aaa'
But it deletes only lower case list, I want something general which checks duplicates in small and caps and delete both of them?
Thanks in advance Amy