this is myTable
clientId, itemId, sellId
primary is on clientId and there is also btree index no uniqe on sellId
now i have part of very slow query
LEFT OUTER JOIN myTable wl ON wl.itemId= ld.itemId and wl.clientId= @clientId
question is should i create here index combined for both clientId and itemId or since clientId is primary then only for itemId ?

 
     
     
    