Nieuw lid |
|
het komt erop neer dat ik bepaalde personen selecteren uit de tabel team, die niet opgenomen zijn in de race_results tabel...
$result = mysql_query("SELECT id, firstname, surname
FROM cyclist
WHERE team = '".$_SESSION['teamid']."'
AND cyclist.id NOT IN ( SELECT cyclist_id AS id
FROM race_results
WHERE race_id = '".$_GET['race_id']."')")
de fout die ik krijg is "Error collecting data from database: You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'SELECT cyclist_id AS id FROM race_results
ik kom er echt niet aan uit want apart werken beide sql-statements perfect...
|