79257292

Date: 2024-12-06 08:26:18
Score: 0.5
Natty:
Report link

You have 3 columns for filter in request (sku_id, package_sku_id, version). So really helping would be combined index of 3 columns. Separate indexes on 1 column is not much effictive for this request.

create index idx on rb (sku_id, package_sku_id, version)

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: user3585447