summaryrefslogtreecommitdiff
path: root/DataBase/show-variants.mysql
diff options
context:
space:
mode:
authorHugues Hiegel <hugues@hiegel.fr>2010-05-10 17:36:26 +0200
committerHugues Hiegel <hugues@hiegel.fr>2010-05-10 17:36:26 +0200
commitc187cb0a45231b91018b318cd6494123fa4e221a (patch)
tree72de0822aab12fa1445a0c535152680d6dd7988e /DataBase/show-variants.mysql
parent86bfbbad119f7ae4793696dddf36ace93dfddf43 (diff)
[DataBase] little cleanup
Diffstat (limited to 'DataBase/show-variants.mysql')
-rw-r--r--DataBase/show-variants.mysql23
1 files changed, 23 insertions, 0 deletions
diff --git a/DataBase/show-variants.mysql b/DataBase/show-variants.mysql
new file mode 100644
index 0000000..3eeeeac
--- /dev/null
+++ b/DataBase/show-variants.mysql
@@ -0,0 +1,23 @@
+
+USE lastfm
+
+
+/**
+ * Deletes all entries in badges
+ * for each unique username + type
+ * where more than one style or color exists
+ */
+
+DROP TABLE IF EXISTS tmp ;
+CREATE TEMPORARY TABLE tmp (SELECT username, type, COUNT(username) AS count FROM badges GROUP BY username, type ) ;
+
+SELECT badges.username, badges.type, badges.style, badges.color, badges.hits, tmp.count
+ FROM badges, tmp
+ WHERE badges.username = tmp.username
+ AND ( (badges.type = tmp.type AND tmp.count > 1)
+ OR ( (badges.type LIKE concat(tmp.type,"%") OR tmp.type LIKE concat(badges.type,"%"))
+ AND badges.type != tmp.type )
+ ) ;
+
+DROP TABLE tmp ;
+