时间:2024-02-05 12:47作者:下载吧人气:26
在数据库中经常会碰到一些表的列是稀疏列,只有很少的值,例如性别字段,一般就只有2种不同的值。
但是当我们求这些稀疏列的唯一值时,如果表的数据量很大,速度还是会很慢。
例如:
创建测试表
bill=# create table t_sex (sex char(1), otherinfo text);
CREATE TABLE
bill=# insert into t_sex select ‘m’, generate_series(1,10000000)||’this is test’;
INSERT 0 10000000
bill=# insert into t_sex select ‘w’, generate_series(1,10000000)||’this is test’;
INSERT 0 10000000
网友评论