gpt4 book ai didi

mysql - 如何在 MS sql 中显示类似于 11111 或类似的数字

转载 作者:可可西里 更新时间:2023-11-01 07:58:37 26 4
gpt4 key购买 nike

我正在尝试显示 ID 列中的数字,这些数字应该具有相同的数字。

像 11111 或 2222 或 33333

select * from table where id like '1111' - 这将给我 1 个值,但有很多值,如 1111111111 或 111111,我不确定,因为有超过 100k记录。

最佳答案

使用正则表达式

SELECT * from table where id REGEXP '^(1+|2+|3+|4+|5+|6+|7+|8+|9+)$';

关于mysql - 如何在 MS sql 中显示类似于 11111 或类似的数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29770154/

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