假设我有一个号码1234567890,我想做某种循环,以创建可在MySQL查询中使用的东西。

例如:

数字是1234567890

查询中的可用部分应如下所示:

SELECT * FROM table WHERE column IN (1234567890, 123456789, 12345678, 1234567, 123456, 12345, 1234, 123, 12, 1)


打破我的头,所以我希望有人可以帮助我。

提前非常感谢您...

最佳答案

这是你想要的吗?

where '1234567890' like concat(column, '%') and length(column) > 0

09-11 19:58