Dear all,
How are you?
Sorry for disturbing you.
I have a table called Cinema with two columns Movie, and Rate.
For example, if I have the following data
Titanic 40
Walking Tall 30
Longest Yard 20
Cars 4
Monster Inc 3
The Hitcher 2
Pathfinder 1
I want a query to show the top 3, and show the rest movies together.
Titanic 40
Walking Tall 30
Longest Yard 20
Others 10
How can I do it?
I tried the below select statement, but It will show only the top 3.
SELECT TOP 3 Cinema.Movie, Cinema.Rate
FROM Cinema;
Thanks in advance
How are you?
Sorry for disturbing you.
I have a table called Cinema with two columns Movie, and Rate.
For example, if I have the following data
Titanic 40
Walking Tall 30
Longest Yard 20
Cars 4
Monster Inc 3
The Hitcher 2
Pathfinder 1
I want a query to show the top 3, and show the rest movies together.
Titanic 40
Walking Tall 30
Longest Yard 20
Others 10
How can I do it?
I tried the below select statement, but It will show only the top 3.
SELECT TOP 3 Cinema.Movie, Cinema.Rate
FROM Cinema;
Thanks in advance