vlada Posted April 17, 2010 Share Posted April 17, 2010 probably simple problem, but it rape my brain. table name is "oglasi", 17 fields, one of them is field called "predmet" in that field in few raws there is value "Bas" simple query SELECT * FROM `oglasi` WHERE predmet = Bas mysql answers: Unknown column 'Bas' in 'where clause' what's going on? thanks in advance Quote Link to comment https://forums.phpfreaks.com/topic/198852-not-that-simple-query-for-me/ Share on other sites More sharing options...
PFMaBiSmAd Posted April 17, 2010 Share Posted April 17, 2010 String data must be enclosed in single-quotes so that it is treated as a string and not as a mysql identifier or keyword. Also, back-tacks `` are mysql specific and should be avoided (there is nothing in your query that needs them.) SELECT * FROM oglasi WHERE predmet = 'Bas' Quote Link to comment https://forums.phpfreaks.com/topic/198852-not-that-simple-query-for-me/#findComment-1043767 Share on other sites More sharing options...
vlada Posted April 17, 2010 Author Share Posted April 17, 2010 thank you very much that's it i put back-tacks by mistake i didn't even saw that i'm just a beginner in this thnx again Quote Link to comment https://forums.phpfreaks.com/topic/198852-not-that-simple-query-for-me/#findComment-1043769 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.