MySQL 中部分索引或过滤索引的解决方法?

发布于 2024-12-10 09:27:22 字数 269 浏览 0 评论 0原文

我正在使用 MySQL 数据库。我知道 PostgreSQL 和 SQL Server 支持部分索引。就我而言,我想做这样的事情:

CREATE UNIQUE INDEX myIndex ON myTable (myColumn) where myColumn <> 'myText'

我想创建一个唯一的约束,但如果它是特定的文本,它应该允许重复。

我找不到在 MySQL 中执行此操作的直接方法。但是,有解决方法可以实现这一目标吗?

I am using a MySQL database. I know PostgreSQL and SQL Server supports partial indexing. In my case I want to do something like this:

CREATE UNIQUE INDEX myIndex ON myTable (myColumn) where myColumn <> 'myText'

I want to create a unique constraint but it should allow duplicates if it is a particular text.

I couldn't find a direct way to do this in MySQL. But, is there a workaround to achieve it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

迷你仙 2024-12-17 09:27:22

过滤索引可以用函数索引和 CASE 表达式(MySQL 8.0.13 及更高版本)来模拟:

CREATE TABLE t(id INT PRIMARY KEY, myColumn VARCHAR(100));

-- NULL are not taken into account with `UNIQUE` indexes   
CREATE UNIQUE INDEX myIndex ON t((CASE WHEN myColumn <> 'myText' THEN myColumn END));


-- inserting excluded value twice
INSERT INTO t(id, myColumn) VALUES(1, 'myText'), (2, 'myText');

-- trying to insert different value than excluded twice
INSERT INTO t(id, myColumn) VALUES(3, 'aaaaa');

INSERT INTO t(id, myColumn) VALUES(4, 'aaaaa');
-- Duplicate entry 'aaaaa' for key 'myIndex'

SELECT * FROM t;

db>>小提琴演示

输出:

+-----+----------+
| id  | myColumn |
+-----+----------+
|  1  | myText   |
|  2  | myText   |
|  3  | aaaaa    |
+-----+----------+

Filtered indexes could be emulated with function indexes and CASE expression(MySQL 8.0.13 and newer):

CREATE TABLE t(id INT PRIMARY KEY, myColumn VARCHAR(100));

-- NULL are not taken into account with `UNIQUE` indexes   
CREATE UNIQUE INDEX myIndex ON t((CASE WHEN myColumn <> 'myText' THEN myColumn END));


-- inserting excluded value twice
INSERT INTO t(id, myColumn) VALUES(1, 'myText'), (2, 'myText');

-- trying to insert different value than excluded twice
INSERT INTO t(id, myColumn) VALUES(3, 'aaaaa');

INSERT INTO t(id, myColumn) VALUES(4, 'aaaaa');
-- Duplicate entry 'aaaaa' for key 'myIndex'

SELECT * FROM t;

db<>fiddle demo

Output:

+-----+----------+
| id  | myColumn |
+-----+----------+
|  1  | myText   |
|  2  | myText   |
|  3  | aaaaa    |
+-----+----------+
兲鉂ぱ嘚淚 2024-12-17 09:27:22

我想只有一种方法可以实现这一目标。您可以向表中添加另一列,在其上创建索引并创建触发器,或者在存储过程中进行插入/更新,以使用以下条件填充此列:

if value = 'myText' then put null
otherwise put value

希望有帮助

I suppose there is only one way to achieve it. You can add another column to your table, create index on it and create trigger or do insert/update inside your stored procedures to fill this column using following condition:

if value = 'myText' then put null
otherwise put value

Hope it helps

油焖大侠 2024-12-17 09:27:22

最好的解决方法是创建一个具有必要条件的持久生成列,并在其上添加唯一索引。

The best workaround is to create a persisted generated column with the necessary condition and a add unique index on it.

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