gpt4 book ai didi

php - 删除查询 mySQL 上的空格

转载 作者:行者123 更新时间:2023-11-29 00:25:46 26 4
gpt4 key购买 nike

在我名为 Postcodes 的数据库表中,我有类似 AB10 1ABAB10 2AB 的行

因此,当我拉动它们访问动态页面时,它们出现在 URL 中,如 AB10%201AB 显然是因为或被 URL 编码,现在我如何才能将 URL 设置为 AB101AB 然后仍然使用 AB101AB 访问数据库行?

简而言之,我想使用 AB101AB 访问数据库中值为 AB10 1AB 的行

有点像

SELECT 
*
FROM
`Postcodes`
WHERE
`postcode` = REMOVEWHITESPACES FROM `postcode` ROW('AB101AB')

最佳答案

使用 replace() 函数(引用 here ):

select *
from `Postcodes`
where replace(`postcode`, ' ', '') = 'AB101AB'

关于php - 删除查询 mySQL 上的空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18993548/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com