|
|
|
|
|
by nzealand
597 days ago
|
|
Try a Bayesian sort. You will get a better result. SELECT * EXCLUDE (titleType, primaryTitle, language)
FROM 'imdb01-11-2024.parquet'
WHERE
(region is null and
titleType = 'movie')
ORDER BY
( (numVotes * averageRating)+(1000007))/ (numVotes+1000000) desc
LIMIT 100 |
|
P.S. Query sharing is supported:
https://www.imdb-sql.com/?query=SELECT+*+EXCLUDE+%28titleTyp...