MongoDB existe
db.records.find( { a: { $exists: true } } )
Difficult Dragonfly
db.records.find( { a: { $exists: true } } )
-- Syntax: { field: { $exists: <boolean> } }
-- Example:
db.inventory.find( { qty: { $exists: true, $nin: [ 5, 15 ] } } )
db.records.find( { a: { $exists: true } } )