Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

http://www.rbs.me.uk

« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS 

Analyse a MySQL Table for Inefficiencies

// description of your code here

SELECT * FROM tags PROCEDURE ANALYSE()

Analyse a MySQL Query for inefficiencies

// description of your code here

EXPLAIN SELECT t2.dbid, t2.tag, COUNT(t2.dbid) * 20 AS match_count
FROM tags AS t1, tags AS t2
WHERE t1.dbid = '105318'
AND t2.tag = t1.tag
AND t1.dbid != t2.dbid
GROUP BY t2.dbid
ORDER BY match_count;
« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS