SELECT t1.s_id as t1_s_id, t2.s_id as t2_s_id, t3.s_name, t1.s_score as s_score_01, t2.s_score as s_score_02 FROM (select s_id, c_id, s_score from Score WHERE c_id ='01') as t1 INNERJOIN (select s_id, c_id, s_score from Score WHERE c_id ='02') as t2 ON t1.s_id = t2.s_id INNERJOIN Student as t3 ON t1.s_id = t3.s_id where t1.s_score > t2.s_score
DISTINCT
1 2 3 4 5 6
SELECTDISTINCT column1, column2, ... FROM table_name;
SELECT column1, column2, ... FROM table_name WHERE condition1 AND condition2 AND condition3 ...;
Checking if Disqus is accessible...