0
我想創建一個存儲過程,它必須檢查區域列,並根據該選擇/輸出一個字符串。如何檢查結果的條件
有5個事件(區域):1-5。 我使用1 IN參數,從我的PHP:
select zone
from customer
where customerId = in_customerId;
但是從這裏被我退回5個事件之一? 我很確定我必須使用if條件,但是如何?
1 should be equal to monday
2 should be equal to tuesday
3 should be equal to wednesday
4 should be equal to thursday
5 should be equal to friday
MySQL支持的if/then條件。 http://dev.mysql.com/doc/refman/5.5/en/if.html –
你在哪裏使用'IN()'參數? – BenM
in_customerId是我的參數嗎? –