simple SELECT with WHERE is not working

Alexej Kubarev

New member
Are you getting any mysql error? any notice or so?
i am guessing that using a column name "set" is not such a godd idea as SET is a reserved word and therefore you are getting some problems.
change it to something else and try again
 
hehe :)
we are here to help if you need something else :)

Good luck with your work -- im going back to my "SQL kung-fu and macho PHP" in Project management system creation :)
 
Alexei said:
... im going back to my "SQL kung-fu and macho PHP" in Project management system creation ...
Go on that boss :D

Also, just wanna leave here an example of the use of MySQL's SET in a INSERT statement.
I know this one is not that known by many pleople:
Code:
INSET INTO table SET whatever = 'whatever', whatever_1 = 'whatever_1';
 
Back
Top