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? Quote 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.' Quote 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 Quote 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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.