Mysql
 sql >> Database >  >> RDS >> Mysql

La query MySql viene eseguita ma non funziona in sp

Sono abbastanza sicuro che il motivo sia la confusione tra UserId e o.UserId.

Nel contesto della query, non sa che intendi l'argomento per la sp. Cambia il nome dell'argomento in qualcosa come "arg_UserId" e sostituiscilo nella query, se appropriato.

Puoi anche semplificare la sintassi della query. Il SELECT le dichiarazioni al di fuori del caso è ridondante. Inoltre, supponendo che i join con County e City siano sempre 1-1, puoi riscrivere la query come:

SELECT op.OrderId, O.Number,  SUM(op.Price) Price,
       CONCAT(A.Detail, ' ', C.Name, ' / ', Ci.Name) AS UserAddress,
       (CASE WHEN O.Status =0 THEN 'Onay Bekliyor'  WHEN O.Status =1 THEN 'Onaylandı' WHEN O.Status = 2 THEN 'Reddedildi' END) Status,
       O.Creation,
       (CASE WHEN O.IsDelivered =0 THEN 'Teslim Edilmedi' ELSE 'Teslim Edildi' END) IsDelivered,
       group_concat(P.Name) as Product
FROM kobiakinlar.product P JOIN
     kobiakinlar.orderproduct op
     ON op.ProductId = P.productId JOIN
     kobiakinlar.order O
     ON O.orderId = op.OrderId JOIN 
     kobiakinlar.address A ON A.addressId = O.AddressId join
     County C
     ON C.CountyId = A.CountyId join
     City AS Ci
     ON C.CityId = Ci.CityId
WHERE O.UserId = arg_UserId
GROUP BY op.OrderId;