Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
プラグインとして ydn-db を使用しています
インデックス (セカンダリ キー) を定義しており、そのインデックスに一致するデータがあるかどうかを確認したいと考えています。
インデックスとして列3があり、値が「1001」であるとします。列3に値1001がある場合、カウント/データなどを取得する方法はありますか?
次のように簡単にする必要があります。
var kr = ydn.db.KeyRange.only(1001); db.count('store name', 'index name', kr)
または、新しい構文を使用します。
db.from('store name').where('index name', '=', 1001).count().done(...