我正在使用MySQL數據庫。我必須建立一個接受整型參數的存儲過程。取決於整數的價值,我必須「ORDER BY」不同的值這樣的..排序方式是升序和降序的情況
**if(type == 1) than
order by Date Desc,
Quantity asc,
Amount asc
else if(type == 2)than
order by Date ASc,
Quantity asc,
Amount asc
else if(type == 3)than
order by
Quantity asc
Date desc,
Amount asc
但是當我嘗試這個我無法做到這一點它也給了錯誤。
什麼錯誤?你在這裏忘了 – Pratik
你會得到什麼錯誤? (我認爲那些**不屬於那裏) – Ruben
鏈接在哪裏?以及它給編譯時錯誤我的sp沒有編譯...... –