If M0=0 Then Endif If M1=1 Then Endif
switch ... case 吧? 你这不是C语言哈
switch(M0) { case 0: //do somthing break; case 1: //do somthing break; default: //do somthing break; }
select case when m0=0 then xxx else xxxx end