"NumberOfBooksByAuthor" and "ReadBooksByAuthor" are not needed on the "AuthorInfo" table - you can get those by querying the database. I may have the syntax slightly wrong here, but along the lines of: SELECT `ai`.`AuthorID`, `ai`.`AuthorName`, COUNT(`bi`.`BookID`) from `AuthorInfo` `ai` LEFT JOIN `BookInformation` `bi` ON `bi`.`AuthorID` = `ai`.`AuthorID` GROUP BY `ai`.`AuthorID`
should give the number of books by each author. Add: AND `bi`.`ReadStatus` = "Read" to the ON condition and you can get the number of read books by each author.That's the kind of thing a database enables you to do much more easily than with a spreadsheet ;o)
Mark. Joel Madero wrote:
Hi All, So I went back to planning stage. Link to what I think might work - hoping to get the planning stage done today so I can start actually putting together the db - I have 3 days off so now's a good time for me to get the basic structure together :) Thanks in advance! https://drive.google.com/file/d/0B2kdRhc960qdbGJIQ1M3NWtrdmc/edit?usp=sharing Best, Joel
-- To unsubscribe e-mail to: users+unsubscribe@global.libreoffice.org Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/ Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette List archive: http://listarchives.libreoffice.org/global/users/ All messages sent to this list will be publicly archived and cannot be deleted