xiaoyong199322 2015-07-13 02:03 采纳率: 0%
浏览 2524

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

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-13 05:40
    关注

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

        pr_price(product_id)包含(price_type,sale_channel)
        cl_category_product_rel(product_id)包含(catalog_id)
    
    评论

报告相同问题?

悬赏问题

  • ¥15 求差集那个函数有问题,有无佬可以解决
  • ¥15 【提问】基于Invest的水源涵养
  • ¥20 微信网友居然可以通过vx号找到我绑的手机号
  • ¥15 寻一个支付宝扫码远程授权登录的软件助手app
  • ¥15 解riccati方程组
  • ¥15 display:none;样式在嵌套结构中的已设置了display样式的元素上不起作用?
  • ¥15 使用rabbitMQ 消息队列作为url源进行多线程爬取时,总有几个url没有处理的问题。
  • ¥15 Ubuntu在安装序列比对软件STAR时出现报错如何解决
  • ¥50 树莓派安卓APK系统签名
  • ¥65 汇编语言除法溢出问题