gpt4 book ai didi

mysql - SQL Like 运算符

转载 作者:行者123 更新时间:2023-12-01 00:19:40 26 4
gpt4 key购买 nike

预期输出:

enter image description here

我们如何运行返回“Robot”后跟 2000 到 2099 之间的年份的查询? (所以 2015 是末尾的有效值,但 2123 不是。)

enter image description here

最佳答案

SELECT name FROM robots WHERE name LIKE '%Robot 20__%'

如果 20 之后可能还有其他字符,则需要 REGEXP:

SELECT name FROM robots 
WHERE name REGEXP 'Robot 20[0-9][0-9]'

关于mysql - SQL Like 运算符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35268978/

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