Starting with Mongo DB and confused, how to proceed. MongoDB documents are a good way to proceed.
But there is an alternative that you can follow. Open any mongoDB GUI tool. Like in my case, I am using free version of No SQL Booster
.
Suppose you want to convert below query to mongo query:
select movies.title
from movies
inner join ratings on movies.movieId=ratings.movieId
where movies.genres like '%Children%'
and ratings.rating>3
group by movies.title;
Steps:
Top comments (0)