今天我在 MySQL 中遇到了一个新问题。
当我执行以下查询时
select `column` from table where `column` between '1' and '30000'
我得到了三个结果
234
123
111
当我用不同的值执行相同的查询时
select `column` from table where `column` between '1' and '9000'
我有六个结果
111
123
343
234
765
568
可能是什么问题?
仅供参考:列的数据类型是 varchar。