Looking at my books using the following query:
Quote:
SELECT c.attribution, c.title
FROM content c JOIN Keywords k on c.contentID = k.BookId JOIN Stack s ON k.StackId = s.StackId
group by c.attribution, c.title
|
I have:
"Alan Dean Foster","The Moment of the Magician"
"David Wright,Sean Platt","Yesterday's Gone: Season Two (Episodes 7-12)"
"Gregory Benford","Great Sky River"
"Jim Butcher","Changes"
"Jim Butcher","Small Favour"
"Jim Butcher","Turn Coat"
"Orson Scott Card","Shadows in Flight"
"Suzanne Collins","Catching Fire"
"Suzanne Collins","Mockingjay"
"Suzanne Collins","The Hunger Games"
The only one I have read as a kepub since the BtB came in was "Catching Fire". I noticed the links but they weren't very useful. And at least one was wrong.
Note: The Stack table isn't really needed for the above query. I had written it for something else and left it in to show the relationships in case someone wants to look into it a bit more.