这是我表格中的数据:
NAME ADDRESS GENDER SID
shadab hyderabad male a16046
那么,当条件为真时,为什么我的查询不返回数据?
select * from voters where sid='a16046'
答案 0 :(得分:0)
试试这个: -
select * from voters where TRIM(sid)='a16046'
OR
select * from voters where RTRIM(LTRIM(sid))='a16046'
感谢: - )