I am relatively new to MongoDb as well as RDBMS.
I understand that, in SQL, even though I don’t have data for the field, the field will be available. Whereas in MongoDB if the data is not there, the field won’t be there.
Out of curiosity, is there a SQL Query Equivalent to the below MongoDb query?
db.goods.find({“product” :{ $exists : true }});