Please refere below table. First table is 'Schedule' which has comma seperated team ids (e.g. 1,2). I want to create a single query to fetch team names from joined Team table. Is it possible?
Schedule
------------
Id date teams
1 2010-01-15 1,2
2 2010-01-17 3,4
Team
--------
id team
1 England
2 South Africa
3 Sri Lank
4 India
Thanks.