I have a table that is populated with data from a query that selects studentid numbers from a database. the view is like so :

As you can see the same piece of data is being output multiple times. I have a feature that for any reason a counselor can not finish a student then they can send the student to another counselor. Now to maintain historic data I keep all that data. Now when I go back to my student que then it shows all the current data (which I want) and all the past historic data (which I dont want)
this is my sql statement :
try
{
$query = $dbh->prepare("SELECT
session.session_id AS id,
session.anum,
student.first,
student.last,
session.why,
session.studentcomments,
session.aidyear,
support.counselorcomments
FROM
student INNER JOIN session ON student.anum = session.anum
INNER JOIN session_status ON session.status = session_status.status
LEFT JOIN support ON session.session_id = support.session_id
WHERE session.status = 0 OR session.status = 2");
$query->execute();
$result = $query->fetchall();
}
catch (PDOException $e) {
error_log($e->getMessage());
die($e->getMessage());
}
Now the way I have my database set up is how I want to keep it as it works. I just think the way I am querying the data is what the problem is.
this is a picture of the data in mysql :

EDIT
Now since that problem is fixed now I am having an error that when ever a insert happens (updating the support.starttime timestamp) the above record disappears this is my updated sql
$query = $dbh->prepare("SELECT session.session_id AS id, session.anum, student.first, student.last, session.why,
session.studentcomments, session.aidyear, support.counselorcomments FROM student LEFT JOIN
session ON student.anum = session.anum LEFT JOIN session_status ON
session.status = session_status.status LEFT JOIN support ON session.session_id = support.session_id
WHERE (session.status) IN (0) OR (session.status) IN (2)
AND support.starttime = (SELECT MAX(support.starttime) FROM support INNER JOIN session ON session.session_id =
support.session_id)");
Used DISTINCT as ALberto told me to do! Thank you alberto