gpt4 book ai didi

mysql - 从数据库中选择字符串 = 带有变音符号的相同字符串

转载 作者:行者123 更新时间:2023-11-28 23:47:31 26 4
gpt4 key购买 nike

我如何通过给定的字符串和 mysql 从数据库中选择以返回带有变音符号的相同字符串的行?

select * from myTable where nume = "Stefan"

以及应返回的数据库行:

id = 1 
name = "Ștefan"

最佳答案

您可以这样搜索:

SELECT * from myTable 
where
CONVERT(nume USING utf8) LIKE '%Stefan%'

但这有点不清楚,因为 MySql 已经知道如何使用变音符号搜索字符串。

关于mysql - 从数据库中选择字符串 = 带有变音符号的相同字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33345280/

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