#1
|
|||
|
|||
List duplicate items with same URL?
Is there a way to retrieve items that have same URL? I wanted to clean up duplicate items.
Thank you |
#2
|
|||
|
|||
Using SQLite
SELECT ItemID, Value FROM ItemAttribute WHERE AttributeID=996 AND UPPER(Value) IN (SELECT UPPER(Value) AS Val FROM ItemAttribute WHERE AttributeID=996 GROUP BY Val HAVING(COUNT(*) > 1)) ORDER BY UPPER(Value); http://www.kinook.com/Forum/showthre...?threadid=2825 |
#3
|
||||
|
||||
Quote:
Thanks! |
|
|