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 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' 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 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
Archived
This topic is now archived and is closed to further replies.