Fields are of type VARCHAR(8) . How can this field be compared with a string?
select * from table WHERE postinfo = '12345678'; Where postinfo VARCHAR(8) does not work. Returns nothing.
Fields are of type VARCHAR(8) . How can this field be compared with a string?
select * from table WHERE postinfo = '12345678'; Where postinfo VARCHAR(8) does not work. Returns nothing.
Source: https://ru.stackoverflow.com/questions/335692/
All Articles