gpt4 book ai didi

sql - 按字母范围选择

转载 作者:行者123 更新时间:2023-12-03 07:52:32 28 4
gpt4 key购买 nike

Table students 我正在尝试按 A-M 范围内的字母名称进行排序:

Here is the table contents

Here is when i run the command

我已经尝试过:

SELECT *  FROM student  WHERE student_first_name like '[A-M]%';

它没有给我任何东西。

最佳答案

您正在使用支持 GLOB 的 SQLite运算符,您可以在其中使用 [x-y] 列表通配符和 * 而不是 %:

SELECT * FROM student WHERE student_first_name GLOB '[A-M]*';

请注意,GLOB 区分大小写。

如果您想要不区分大小写的结果,请使用:

SELECT * FROM student WHERE UPPER(student_first_name) GLOB '[A-M]*';

关于sql - 按字母范围选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/76819279/

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