Sorry, basically you can read it like this (using classic apples oranges pairs style example):
1 - Apple, 2 - Orange, 3 - Pair, 4 - Banana
2 people choose random fruit each row. I'm wanting to find the results of how many times each fruit was chosen, but do this in one query if possible.
I have it working at the moment by creating a temp table, feeding the data from column 1 in then feeding column 2 in. After which doing a count + group by on the temp table, but this involves 4 seperate query strings (including creation and drop of temp table).
If there's no easier way this will have to do, but I was just checking if there was something I was missing after browsing through google for abit.
Thanks