gpt4 book ai didi

sql - MySQL:使用斜杠搜索字符串范围

转载 作者:行者123 更新时间:2023-11-29 14:58:16 24 4
gpt4 key购买 nike

我有一个包含以下数据的 varchar 字段:

界面
演出1/0/1
演出1/0/3
演出1/0/5
演出1/0/10
演出1/1/11

我正在尝试进行搜索(BETWEEN)。

Select * from test1 where Interface Between "Gig1/0/1" and "Gig1/0/5"  

返回除 Gig1/1/11 之外的所有记录

最佳答案

使用 substring_index 函数怎么样?

select substring_index(fieldname,'/',-1) as v from tablename where v between 1 and 5

关于sql - MySQL:使用斜杠搜索字符串范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3942353/

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