1
我想通過在yii2中使用activerecord查詢來訪問我的數據庫表中的最後一條記錄之前的一條。在yii2中的最後一條記錄之前選擇一條
例如像這樣:
$query = Product::find()
->where(['NOT IN', 'price_off', ''])
->orderBy('id DESC')
->limit('1,1') //But this limit not work correctlly
->one();
This page沒有幫助我。
非常感謝。有用 –