Log in

View Full Version : mysql syntax error


AN-net
02-25-2004, 10:01 PM
what did i do wrong?

Database error in vBulletin 3.0.0 Release Candidate 4:

Invalid SQL: SELECT * FROM gallery WHERE gallery_id='1',image_name='bacon1' ORDER BY gallery_id DESC
mysql error: 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 'image_name='bacon1' ORDER BY gallery_id DESC' at line 1

mysql error number: 1064

Date: Wednesday 25th of February 2004 05:57:42 PM
Script: http://www.animationation.net/community/gallery.php?do=showsearchresults&imgname=bacon1&artistname=&orderby=ORDER+BY+gallery_id&orderin=DESC&gallery=1
Referer: http://www.animationation.net/community/gallery.php?do=search
Username: Antonbomb22
IP Address: 68.37.175.197

Andreas
02-25-2004, 10:04 PM
I guess you want this:


SELECT * FROM gallery WHERE gallery_id='1' AND image_name='bacon1' ORDER BY gallery_id DESC


Btw: I'd be interested in a beta or even alpha version of your gallery :)

AN-net
02-25-2004, 10:36 PM
whats wrong with it now>_<

Database error in vBulletin 3.0.0 Release Candidate 4:

Invalid SQL: SELECT * FROM gallery WHERE gallery_id='' , image_name='', artist_name='antonbomb22' ORDER BY gallery_id DESC
mysql error: 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 ' image_name='', artist_name='antonbomb22' ORDER BY gallery_id

mysql error number: 1064

Date: Wednesday 25th of February 2004 06:35:07 PM
Script: http://www.animationation.net/community/gallery.php?do=showsearchresults&imgname=&artistname=antonbomb22&orderby=ORDER+BY+gallery_id&orderin=DESC
Referer: http://www.animationation.net/community/gallery.php?do=search

Andreas
02-25-2004, 10:44 PM
Well, same problem as before ;)


SELECT * FROM gallery WHERE gallery_id='' AND image_name='' AND artist_name='antonbomb22' ORDER BY gallery_id DESC


You might also put OR instead of AND (or AND NOT, or ...), depends on what you want to achieve.