I made a app where I can see the university name for my bachelor available for me depending on my secondary and higher secondary result. So, I made a database(UniInfo) with three attribute (universityName, secondaryResult, higherSecondaryResult). Here user will input their secondary and higherSecondary result and can see the available university list.
If i write my query with sql, then -
SELECT universityName
FROM UniInfo
WHERE inputSecondaryResult >= secondaryResult
AND inputHigherSecondaryResult >= higherSecondaryResult;
But I made this app with Firebase which is nosql database. In nosql we can not retrieve data with multiple clause (AND operation). Help me out to write this query. Thanks.