postgresql测试题_postgresql 关于索引的简单测试

postgres=# create database c encoding 'sql_ascii' template template0 LC_collate='C' LC_ctype='C';

CREATE DATABASE

postgres=# \c c

You are now connected to database "c" as user "postgres".

c=# create table t1(id int,name text);

CREATE TABLE

c=# insert into t1 select t::int,t::text from generate_series(1,1000000) as t;

INSERT 0 1000000

c=# create index t1_name on t1(name);

CREATE INDEX

c=# vacuum ANALYZE t1;

VACUUM

c=#

c=#

c=# explain select * from t1 where name like '888%';

QUERY PLAN

------------------------------------------------------------------------

Index Scan using t1_name on t1 (cost=0.42..1540.99 rows=100 width=10)

Index Cond: ((name >= '888'::text) AND (name < '889'::text))

Filter: (name ~~ '888%'::text)

(3 rows)

c=# explain select * from t1 where name like '%888';

QUERY PLAN

---------------------------------------------------------

Seq Scan on t1 (cost=0.00..17905.00 rows=100 width=10)

Filter: (name ~~ '%888'::text)

(2 rows)

c=# create database d encoding 'sql_ascii' template template0 LC_collate='zh_CN.UTF8' LC_ctype='zh_CN.UTF8';

CREATE DATABASE

c=#

c=#

c=# \c d

You are now connected to database "d" as user "postgres".

d=# create table t1(id int,name text);

CREATE TABLE

d=# insert into t1 select t::int,t::text from generate_series(1,1000000) as t;

INSERT 0 1000000

d=# create index t1_name on t1(name);

CREATE INDEX

d=# vacuum ANALYZE t1 ;

VACUUM

d=# explain select * from t1 where name like '888%';

QUERY PLAN

---------------------------------------------------------

Seq Scan on t1 (cost=0.00..17905.00 rows=100 width=10)

Filter: (name ~~ '888%'::text)

(2 rows)

用opclass建立索引,告诉数据库这列上要走索引,对于生产环境中有些情况很有效率

d=# drop index t1_name ;

DROP INDEX

d=# create index t1_name on t1 (name varchar_pattern_ops)

;

CREATE INDEX

d=# explain select * from t1 where name like '888%';

QUERY PLAN

--------------------------------------------------------------------------

Bitmap Heap Scan on t1 (cost=22.80..2630.32 rows=100 width=10)

Filter: (name ~~ '888%'::text)

-> Bitmap Index Scan on t1_name (cost=0.00..22.78 rows=1035 width=0)

Index Cond: ((name ~>=~ '888'::text) AND (name ~

(4 rows)

d=# set enable_bitmapscan = off;

SET

d=# explain select * from t1 where name like '888%';

QUERY PLAN

------------------------------------------------------------------------

Index Scan using t1_name on t1 (cost=0.42..3815.71 rows=100 width=10)

Index Cond: ((name ~>=~ '888'::text) AND (name ~

Filter: (name ~~ '888%'::text)

(3 rows)

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值