select t1.score1, t2.score2, t3.score3
from mytable t1, mytable t2, mytable t3
where t2.id = t1.id and t3.id = t1.id
если так не прокатит, тогда вложенными запросами...
как то так (за код не ручаюсь...):
select SCORE1, SCORE2, SCORE3
from SCORE1 (select mytable.score1 from mytable), SCORE2 (select mytable.score2 from mytable), SCORE3 (select mytable.score3 from mytable)