//交易记录表
create table t
(
member_no varchar(20) not null, -- 会员号
pro_code varchar(20) not null, -- 产品编码
pur_time  date not null, -- 购买时间
price numeric(12,2) not null, -- 价格
prod_count integer not null  -- 数量
);create index idx_purchase_prod on t(pro_code);
create index idx_purchase_time on t(pur_time);要求:根据会员号显示该会员30天以来的购买记录,写出SQL语句并添加相应索引这个索引该怎么加啊?