如何在 Mysql 中使用 LIKE 标准对表进行分区
我有一个大表,可以按 varchar(200) 类型字段的值进行分区。我已经读过这个问题,但是因为我无法使用字段的大小这个解决方案。
我的问题是:我可以使用 LIKE 标准,如 LIKE 'b%' 或 LIKE 'o%' 等吗?
如果没有,我该如何解决这个问题?
预先感谢,
安东尼奥
I've a large table to partition by value of a field of varchar(200) type. I have already read this question but because the size of the field I cannot use this solution.
My question is: Can I use a Like criteria as LIKE 'b%' or LIKE 'o%' and so on?
If not, How can I solve this?
Thanks in advance,
Antonio
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您最好指定范围,因为
它简短且可读。
You'd better specify the range as
It is short and readable.
似乎只有在按键分区(不允许重复值且不允许空值)的情况下才允许对 varchar 进行分区。
这里进行讨论
我尝试使用函数执行分区它“转换”为整数值作为 ASCII(),但它不与分区表达式中的 Mysql 支持的函数进行比较。
支持的函数列表
It seems that partitioning on varchar is allowed only if partitioning is by key (no duplicate values and no null values allowed).
Here a discussion
I tried to perform partitioning using a function that "converts" to integer values as ASCII(), but it doesn't compare in Mysql supported functions in partitioning expression.
List of supported functions