I have a table called movies and a column called movie_id . And I want to get the most common movie_id in the table.
Example data in a column:
movie_id 234 343 2928 956 73 234 234
So, the result should be 234, because it has the largest number of rows. I have never tried this, so I really don't know how this can be achieved.
source share