Suppose we have a table that shows the vacation destinations for some people with their vacation date (in January).
Date | Name | Destination
01/01/2021 | Andy | Thailand
01/01/2021 | Ben | Singapore
02/01/2021 | Andy | Japan
02/01/2021 | Andy | Canada
03/01/2021 | Ben | USA
04/01/2021 | James | Thailand
05/01/2021 | James | Thailand
06/01/2021 | James | Japan
07/01/2021 | Ben | Canada
08/01/2021 | James | Canada
How do we list down those who have destinations in the exact following order: Thailand - Japan - Canada? (If someone has destination in the same country multiple times in sequential order then it counts as one appearance)
The expected output is the name of the person:
Name
Andy
James