is there an easy way to test to see if a particular tuple even exists?
the way i have kind of been doing it is something like
"SELECT a FROM A WHERE b = '$b'";
and if it returns null, then i know. But is there a mysql/php call that will tell you if a particular tuple just exists, like a true false?
thanks ahead of time.