gpt4 book ai didi

mysql - 按列排序是否需要成为索引的一部分

转载 作者:行者123 更新时间:2023-12-01 00:14:21 25 4
gpt4 key购买 nike

create table foo (id, name varchar(255));
create table foo_values (id, foo_id, name varchar(255), value varchar(255));

create table bar (id, name varchar(255));
create table bar_values (id, bar_id, name varchar(255), position integer);

我们的查询看起来像

select * from foo_values where foo_id=<foo_id> and name=<some-name> order by value;
select * from bar_values where bar_id=<bar_id> and name=<some-name> order by position;

We have a multi key index for foo_id and name in foo_values.
We have a multi key index for bar_id and name in bar_values.

在各自的关键索引中包含值和位置是否有意义,还是不需要。

最佳答案

不,我不认为它会产生影响,看看你是否可以衡量它。

关于mysql - 按列排序是否需要成为索引的一部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8227698/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com