scottybwoy Posted March 2, 2009 Share Posted March 2, 2009 Hi putting this qry in MySQL admin : SELECT FROM products_description WHERE products_id =279 AND language_id =1 AND products_description LIKE '%Product Information is not available for this product yet. Sorry for any inconvenience, this should be updated shortly.' Returns this error : #1064 - 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 'FROM products_description WHERE products_id = 279 AND language_id = 1 AND produc' at line 1 Does that mean it's only processing that part of the query or there's something wrong with the syntax I can't spot? Link to comment https://forums.phpfreaks.com/topic/147571-solved-qry-getting-broken-i-think/ Share on other sites More sharing options...
elflacodepr Posted March 2, 2009 Share Posted March 2, 2009 I believe you are not telling MySQL what column to select from 'products_description' The query must be like: (you can use an asterisk or other column name) SELECT * FROM products_description WHERE products_id =279 AND language_id =1 AND products_description LIKE '%Product Information is not available for this product yet. Sorry for any inconvenience, this should be updated shortly.' Link to comment https://forums.phpfreaks.com/topic/147571-solved-qry-getting-broken-i-think/#findComment-774703 Share on other sites More sharing options...
scottybwoy Posted March 2, 2009 Author Share Posted March 2, 2009 lol, How simply stupid I was, thanks Link to comment https://forums.phpfreaks.com/topic/147571-solved-qry-getting-broken-i-think/#findComment-774736 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.