 |
 |
 |
 |
#314713 - 07/13/07 09:45 PM
Re: Useful Threads 7.x Queries
[Re: Gizmo]
|
Enthusiast
Registered: 11/08/03
Posts: 429
Loc: SoCal
|
ok, i'll try not to hijack again  This is a quick way to make a list of all your themes and how many members have specifically chosen a theme in their profile.
SELECT
CONCAT('[*][url=http://path/to/threads/ubbthreads.php?ubb=previewskin&skin=',t2.STYLE_ID,']',STYLE_NAME,'[/url]') AS Style,
CONCAT('[color:red](',COUNT(t2.STYLE_NAME),')[/color]') as Count
FROM ubbt_STYLES as t2,
ubbt_USER_PROFILE as t1
WHERE t1.USER_STYLE = t2.STYLE_ID
GROUP BY t2.STYLE_ID
ORDER BY t2.STYLE_NAME
output after pasting it into the SQL pane in the Database tools is:
[*][url=http://yourdomain.com/ubbthreads/ubbthreads.php?ubb=previewskin&skin=6]matt.DarkBlue[/url] [color:red](95)[/color]
[*][url=http://yourdomain.com/ubbthreads/ubbthreads.php?ubb=previewskin&skin=4]PaleCoffee[/url] [color:red](52)[/color]
[*][url=http://yourdomain.com/ubbthreads/ubbthreads.php?ubb=previewskin&skin=12]paradox.Grey[/url] [color:red](11)[/color]
[*][url=http://yourdomain.com/ubbthreads/ubbthreads.php?ubb=previewskin&skin=20]push.DarkBlue[/url] [color:red](26)[/color]
[*][url=http://yourdomain.com/ubbthreads/ubbthreads.php?ubb=previewskin&skin=22]sd.DarkDoom[/url] [color:red](25)[/color]
[*][url=http://yourdomain.com/ubbthreads/ubbthreads.php?ubb=previewskin&skin=21]sd.DarkGreen[/url] [color:red](16)[/color]
[*][url=http://yourdomain.com/ubbthreads/ubbthreads.php?ubb=previewskin&skin=2]sd.EW.65x.Dark[/url] [color:red](114)[/color]
[*][url=http://yourdomain.com/ubbthreads/ubbthreads.php?ubb=previewskin&skin=16]sd.Frosted[/url] [color:red](77)[/color]
[*][url=http://yourdomain.com/ubbthreads/ubbthreads.php?ubb=previewskin&skin=17]sd.MellowBlues[/url] [color:red](65)[/color]
[*][url=http://yourdomain.com/ubbthreads/ubbthreads.php?ubb=previewskin&skin=15]sd.Ubbdev.tweaked[/url] [color:red](78)[/color]
[*][url=http://yourdomain.com/ubbthreads/ubbthreads.php?ubb=previewskin&skin=3]Slate[/url] [color:red](49)[/color]
[*][url=http://yourdomain.com/ubbthreads/ubbthreads.php?ubb=previewskin&skin=5]Sunny.DropShadow[/url] [color:red](27)[/color]
[*][url=http://yourdomain.com/ubbthreads/ubbthreads.php?ubb=previewskin&skin=8]UbbCentral[/url] [color:red](100)[/color]
[*][url=http://yourdomain.com/ubbthreads/ubbthreads.php?ubb=previewskin&skin=9]UbbCentral.Classic[/url] [color:red](28)[/color]
[*][url=http://yourdomain.com/ubbthreads/ubbthreads.php?ubb=previewskin&skin=1]UbbThreads[/url] [color:red](81)[/color]
you can then copy/paste this between [`list] tags and get: something like that  note: path/to/your : you know the drill and replace ubbt_ with your board prefix.. note: the links are dead and it's only just for show 
_________________________
Unfair, Unbalanced, Unmedicated.
|
|
Top
|
|
|
|
 |
 |
 |
 |
|
|