Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

MySQL 5.0, Acct is a varchar field, so why is the query behaving differently?

        select * 
        from acct_codes
        where Acct = 10100;
        /* returns a record */ 

        select * 
        from acct_codes
        where Acct = '10100';
        /* returns no record */ 

How can I troubleshoot this? Can I typecast this somehow to guarantee I will always get the record? Please help.

share|improve this question
Can you show what is returned by the first query? – PMV Aug 5 '11 at 23:15
The problem was carriage returns in the data, which must have happened when the data were populated into the table. – dreftymac Aug 5 '11 at 23:29

2 Answers

This is how you can cast to INTEGER:

CONVERT( '10100', SIGNED INTEGER );
share|improve this answer
Thanks, the problem is it is a varchar(6) ... not sure how integer is even coming into the picture here ... hmmmmm – dreftymac Aug 5 '11 at 23:13

I found the problem.

I did a dump of the table and there was a carriage return at the end of the data.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.