如何在 Mysql 中使用 LIKE 标准对表进行分区

发布于 2024-10-27 18:54:25 字数 266 浏览 5 评论 0原文

我有一个大表,可以按 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浮世清欢 2024-11-03 18:54:25

您最好指定范围,因为

less than ('c')

它简短且可读。

You'd better specify the range as

less than ('c')

It is short and readable.

笑忘罢 2024-11-03 18:54:25

似乎只有在按键分区(不允许重复值且不允许空值)的情况下才允许对 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文