I am trying to figure what is wrong i am doing
Here is the JOIN i have
select * from table1 left outer join table2 on 
            table1.fkID = table2.fkID
            where table2.fkID= 500 order by 1 desc 
i should multiple records but i am only getting 1, am i doing something wrong here
 
     
    