SELECT id,name,address,company,phoneNumber,email,passWord FROM userInfo where phoneNumber='ttt'.net后台往oracle发以上的匹配字符ttt的就无法查询出来,实际是有这样的记录的,
但是可以匹配数据类型的字符,
比如SELECT id,name,address,company,phoneNumber,email,passWord FROM userInfo where phoneNumber='1111'
虽然匹配的字段是同个字段同个类型,但是能查询出字段值为'1111'的记录,无法查询出字段值为'ttt' 的记录,这个什么原因啊?