Jump to content

not that simple query for me


vlada

Recommended Posts

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

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'

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.