在名为Postcodes
的数据库表中,我有AB10 1AB
,AB10 2AB
因此,当我将它们拉到访问动态页面时,它们显示在AB10%201AB
这样的网址中,显然是因为或是进行了网址编码,现在我如何将网址设置为AB101AB
和然后仍然使用AB101AB
?
简而言之,我想使用AB10 1AB
AB101AB
类似
SELECT
*
FROM
`Postcodes`
WHERE
`postcode` = REMOVEWHITESPACES FROM `postcode` ROW('AB101AB')
答案 0 :(得分:1)
使用replace()
功能(参考here):
select *
from `Postcodes`
where replace(`postcode`, ' ', '') = 'AB101AB'