1
執行查詢時,這裏是我的代碼:一般錯誤SQLSTATE [HY000] Yii中2
$sql = "
SET @run_balqty :=0;
SELECT
transaction_date,
item_id,
item_description,
unit_id,
quantity,
(@run_balqty := @run_balqty + quantity) AS balance_qty,
reference_code
FROM
`report_ledger` AS ledger
WHERE
item_id = 3147
ORDER BY
transaction_date ";
$query = Yii::$app->db->createCommand($sql)->queryAll();
當我試圖運行此代碼。我得到這個錯誤。
SQLSTATE [HY000]:常規錯誤
現在..我的問題是:爲什麼我得到這個錯誤?我怎樣才能讓它運行?
需要幫助。謝謝。