PDA

View Full Version : grabbing results even though some WHERE's are false


AN-net
02-25-2004, 11:43 PM
ok basically im writing a searching script but when i dont type in an image name, an artist name,but i type in a gallery id it says there are none cause its selecting with image name and artist name being nothing. is there a away around this so it will just select everything with that gallery id even though image name and artist name are set to nothing?

Andreas
02-25-2004, 11:49 PM
Or :)

AN-net
02-25-2004, 11:55 PM
but i still want to if like artist name has some value that it will also refine the results from gallery id and remove those results which arent equal to artist name

Andreas
02-26-2004, 12:07 AM
OK, so let's figure out what you want ;)

If I am right we're talking about 3 fields: Image Name, Artist Name and Gallery ID.

Pleasse tell me what you want to have returned in each of the following cases:

Only Gallery ID given
Only Artist Name given
Only Image Name given
Artist Name and Image Name given
Artist Name and Gallery ID given
Image Name and Gallery ID given
Artist Name, Image Name and Gallry ID given

AN-net
02-26-2004, 12:22 AM
in all those cases i want all the data in my gallery table to be returned which matches the criteria in WHERE

Andreas
02-26-2004, 12:28 AM
Yeah ;)
And what IS the criteria?

LordJMann
02-26-2004, 12:32 AM
Can you post the query or the code for us to see? Would help solve the problem.

AN-net
02-26-2004, 02:12 AM
$fresults=$DB_site->query("SELECT * FROM gallery WHERE gallery_id='$gallery' AND artist_name='$artistname' AND image_name='$imgname'");

Andreas
02-26-2004, 08:27 AM
This will return all rows from table gallery wher gallery_id is $gallery, artist_name ist $artitstname and image_name is $imgname.

But it seems like this is not what you want.

I've asked before how you want your conditions, but you did not gave me a useful answer so I can only guess:


SELECT * FROM gallery WHERE (gallery_id = '$gallery' AND '$artistname'='' AND '$imgname'='') OR (gallery_id='$gallery' AND artist_name='$artistname' AND image_name='$imgname')


This will return all rows table gallery wher gallery ID is $gallery, artist_name ist $artitstname and image_name is $imgname, or all rows from table gallery where gallery ID is $gallery and $artistname, $imgname are empty.

A better way would be to construct your query in PHP so it does only contain conditions for columns you really care for.

AN-net
02-26-2004, 09:58 AM
ok i see how it will work;)
did you see mess up on the first one? '$imgname'='' ?