3
我期待在我的Parse數據庫中找到所有結果的列表,其中列a <列b。到目前爲止,我已經得到了最接近的是這個(其中數量和QtyMax是列A和B):如何使用列值作爲比較來查詢數據?
var query = new Parse.Query("Item");
query.lessThan("Qty",0); // In this example I'm passing in an int,
// but I really want to pass in a reference
// to a different column's value for the same row.
歸來「的所有行數量< QtyMax」是所需的查詢。
任何想法我會怎麼做?
比較兩列不被支持,因爲我知道。 – knshn 2014-10-14 03:46:47