controleren of een combinatie niet voorkomt in tabel
Ron -
27/09/2008 10:20:00ik heb 2 tabellen, 1 met alle reacties bij fotos en in 1 houd ik bij welke de gebruiker heeft gelezen
nu wil ik in 1 query achterhalen hoeveel hij NIET heeft gelezen, hoe doe ik dit?
dit heb ik dus al geprobeerd, maar zo haalt hij dus de gelezen eruit
in de query moet dus nagegaan worden of de combinatie van het session id en reaction id in de tabel photo_comments_read voorkomt
is dit mogelijk?
alvast bedankt voor de hulp!
nu wil ik in 1 query achterhalen hoeveel hij NIET heeft gelezen, hoe doe ik dit?
Code (php)
1
2
3
2
3
<?php
$comment_query = "SELECT photo_comments.reactionid FROM photo_comments, photo_comments_read WHERE (photo_comments.photo LIKE '".$date."%' && photo_comments_read.reactionid = photo_comments.reactionid && photo_comments_read.userid = ".$_SESSION['je_id'].")";
?>
$comment_query = "SELECT photo_comments.reactionid FROM photo_comments, photo_comments_read WHERE (photo_comments.photo LIKE '".$date."%' && photo_comments_read.reactionid = photo_comments.reactionid && photo_comments_read.userid = ".$_SESSION['je_id'].")";
?>
dit heb ik dus al geprobeerd, maar zo haalt hij dus de gelezen eruit
in de query moet dus nagegaan worden of de combinatie van het session id en reaction id in de tabel photo_comments_read voorkomt
is dit mogelijk?
alvast bedankt voor de hulp!
PHP hulp
18/12/2024 05:24:19Nils Kuijpers
01/10/2008 11:58:00Jurgen assaasas
01/10/2008 12:12:00PHP erik
01/10/2008 12:26:00Nils Kuijpers
01/10/2008 12:30:00- SanThe -
01/10/2008 12:31:00Ron -
01/10/2008 13:23:00als ik dit doe:
dan krijg ik de reacties die de andere mensen hebben gepost, dat is dus ook niet wat ik moet hebben
ik moet checken of de combinatie van reactionid en $_SESSION['je_id'] in 1 rij voorkomt
Code (php)
1
2
3
2
3
<?php
$comment_query = "SELECT photo_comments.reactionid FROM photo_comments, photo_comments_read WHERE (photo_comments.photo LIKE '".$date."%' && photo_comments_read.reactionid = photo_comments.reactionid && photo_comments_read.userid <> ".$_SESSION['je_id'].")";
?>
$comment_query = "SELECT photo_comments.reactionid FROM photo_comments, photo_comments_read WHERE (photo_comments.photo LIKE '".$date."%' && photo_comments_read.reactionid = photo_comments.reactionid && photo_comments_read.userid <> ".$_SESSION['je_id'].")";
?>
dan krijg ik de reacties die de andere mensen hebben gepost, dat is dus ook niet wat ik moet hebben
ik moet checken of de combinatie van reactionid en $_SESSION['je_id'] in 1 rij voorkomt