Jump to content

[SOLVED] qry getting broken, I think


scottybwoy

Recommended Posts

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

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.'

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.