mysql存儲過程當中使用select count(*) into 變量名 from +表+ where條件的用法

select count(*) into v_count from dual where userid=2; 此語句的意思就是根據where條件查詢dual表,獲得的行數存入變量v_count中(給變量賦值) 只能在存儲過程當中編寫這樣的語句?若是在mysql的sql語句中編寫不知道會不會報錯呢
相關文章
相關標籤/搜索