是否可以在MySQL中爲int列的最後一位數字創建索引?基於INT列的最後一位數字的MySQL索引
基於int列
CREATE TABLE partition_test(
textfiled INT,
cltext TEXT,
reindexedAt TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
indexedAt TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
status TINYINT(2),
postId INT)
PARTITION BY HASH(MOD(postId, 10))
PARTITIONS 10;
我試圖創建的帖子ID爲優化查詢時間的最後一個數字的指數的最後一位在此基礎上answer我已經創建的分區。有沒有辦法做到這一點或在postId上的簡單索引就足夠了?
一些失敗的嘗試:
CREATE INDEX postLastDigit USING HASH ON partition_test (MOD(postId, 10));
(1064, u"You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'MOD(postId, 10))' at line 1")
和
CREATE INDEX postLastDigit ON partition_test (MOD(postId, 10));
(1064, u"You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'MOD(postId, 10))' at line 1")
UPDATE: 表有100M以上的行。
我的目標是優化之類的查詢:
1)
SELECT cltext FROM partition_tables
WHERE postId in (<INT>, <INT>)
AND status IS NOT NULL
2)
SELECT cltext FROM partition_tables
WHERE postId in (<INT>, <INT>)
AND status IS NOT NULL
AND reindexedAt BETWEEN (<DATE>, <DATE>)
MariaDB的版本:23年1月10日 - MariaDB的-9 + deb9u1
這是一個壞主意。此外,基本上*隨機*分區不會改善任何事情。它肯定會損害性能,因爲服務器將被迫搜索所有分區。 –