My database stores theatrical shows and the performance dates for each show in two simple tables:
shows
showID
showName
performances
performanceID
performanceDate
showID
A show may have multiple performance dates. I want to write a query that lists all show names in the order of the first performance date for each show. How would you write that query?
-Jim








Bookmarks