xiaoyong199322 2015-07-12 18:03 采纳率: 0%
浏览 2525

怎么在多表查询中建立索引,实现效率的提高,谢谢。

select s.id,s.name,p.price,m.name as clientname,m.register_address,z.img_source from cl_product_i18n s,cl_product n,t_mdm_client m,
cl_category_product_rel t,pr_price p,cl_product_address d,cl_product_image z
where s.id=p.product_id and s.id=z.product_id and d.product_id=s.id and t.product_id=s.id and n.id=s.id and m.id=n.merchant_id
and p.price_type='" + PriceTypeEnum.SALE_PRICE +"' and p.sale_channel=2 and t.catalog_id=150 and s.id='"+productId+"';

  • 写回答

1条回答 默认 最新

  • Tiger_Zhao 2015-07-12 21:40
    关注

    每个表出现在条件中的字段上建索引。如果一个表同时用到多个字段,数据库支持索引包含就用包含(如下),否则就建在一个索引中。

        pr_price(product_id)包含(price_type,sale_channel)
        cl_category_product_rel(product_id)包含(catalog_id)
    
    评论
    编辑
    预览

    报告相同问题?

    手机看
    程序员都在用的中文IT技术交流社区

    程序员都在用的中文IT技术交流社区

    专业的中文 IT 技术社区,与千万技术人共成长

    专业的中文 IT 技术社区,与千万技术人共成长

    关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

    关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

    客服 返回
    顶部