First page Back Continue Last page Image

MongoDB Example

https://www.guru99.com/what-is-mongodb.html

db.film.find(

{“Rating”: “PG”,”Rental Duration”: “7”}

,

{“Title”: 1, “Length”: 1})

.sort({“Length”: 1})

.limit(5)

SELECT title, length

FROM film

WHERE rating = ‘PG’

AND rental_duration=7

ORDER BY length DESC

LIMIT 5

MongoDB

SQL Translation