THIRD THURSDAY BOOK CLUB PICKS DATABASE ASSIGNMENT Jean Mead LS560.

Slides:



Advertisements
Similar presentations
E-books and E-journals Off-campus This presentation will show you how to log in and access Oxford Brookes Library e-books and e-journals when youre off.
Advertisements

E-books and E-journals Off-campus This presentation will show you how to log in and access Oxford Brookes Library e-books and e-journals when youre off.
SQL Database for a Book Store Clinton McKay. Explanation The database contains information about the books held in stock, their authors, publishers, customers,
An introduction to Destiny, the online card catalog
LAS : Destiny and Web Path Express. How Do I Login? All students at LAS are able to use the Destiny Library System to search for books and publications.
MyGateway. Top Tabs MyGateway Home Students Library
Cybercat Tutorial. This is the basic search screen in Cybercat. By clicking on the arrow you can specify the type of search you want to do.
{ Dystopian Database A helpful supplement for Goodread’s list of Young Adult Dystopian titles.
Lakeland Click arrow to advance show. Notice the tabs. You may search by Keyword, Title, Author, Subject or Search OhioLINK. Keyword is the default.
Overseas Library Catalog – Request Item Overseas Library Catalog Request loaned item.
Top 10 Blackboard Tips for Students. 1. Search Blackboard Blackboard has a search tool, which allows you to search through all the course web sites and.
Course Orientation Assignments Tool. If the Assignments tool has been added to the course, use the Assignments link in the Course Menu to access upcoming.
View Database Adapt Settings View Reports Manage Quizzes View Student Info.
New School Websites Teacher Pages. Visit the SCUSD Website for videos tutorials: For more information.
On Campus and at Home How to Link to Ebooks. There are lots of ebooks in the Library Catalog You can recognize them by words [electronic resource] after.
Accessing journals by via PubMed Note the link to find articles through HINARI/PubMed. Using this option will be covered in later in the Short Course.
TEAM NOTES Media Nights Many of your ask what you can do to help your child be as successful as possible at school. One of the answers to this question.
It is not necessary to login to use the card catalog, but extra features are available when you are logged in. It is the same user name and password as.
Topics Basic Internet Concepts. Types of Information. Search Tools & Techniques. Managing Internet Resources. Browsing a mail. Composing a mail. Attaching.
Library Large Conference Room (L210)
Assignment Research 1 QUT Library Assignment Research.
Miss Mottola 5 th Grade Library Lesson. Alisweb is a service that allows you to search every public library in Nassau County at the same time! You can.
ROYAL SOCIETY OF CHEMISTRY
By: ___________________
1 CFUG Book Library Part 2 Troy Pullis 3/3/ Checkout Button Click to request the selected book for checkout. Book Info/Reviews Click to see more.
AUCA LIBRARY MOBILE WEBSITE
How do I? Request an Interlibrary Loan using the OCLC First Search Database?
NoodleBib is available at the Jericho Middle School Library Website
+ LS 560: Database Project Tonya Olson April 14, 2014.
World Cat World wide catalog of libraries in the U.S., Canada, and Europe.
Searching for TIME magazine articles in Goleman Library databases prepared by Josefina Gomez, Librarian San Joaquin Delta College for students in Dr. Wall’s.
Finding online information on the library website Tutorial Nyenrode Library.
Running Queries – Reporting Tools – EmpowHR Version 9.0.
WORLDCAT TUTORIAL WorldCat Tutorial / 1 Tel: Lisa Jarrell Instructional Services Librarian Brenda Yates Habich Information Services.
SUMMER RESOURCES To keep you educated and entertained!
Get your own unique username! Add a title to your own personal virtual bookshelf using My Shelves.
 You will be creating a cartoon in Adobe Illustrator using the paintbrush tool  You will learn about layers, different brushes, and different strokes.
Resource List How to a make resource list using Destiny.
A process of taking your best guesses. Companies have web sites where you can access your information.
This instructional power point was created by staff of Lower Columbia College Library Services Winter 2011.
LibraryThing in the Classroom Going Digital in the K-12 Classroom An Advancing Literacy Workshop.
MS-Access XP Lesson 4. Modifying Queries 1.Select query in queries 2.Click design button or Right click on query and click design view 3.Change query.
Partner Publishers’ Websites From the Partner publisher services dropdown menu, click on the Elsevier Science - Science Direct website. Note that this.
Double click here to add event title Double click here to add event date Double click here to add event time Double click here to add event location.
Using Your Online Account to Request Library Materials Quit.
Table of Contents Click on the link to get to the topic Home Page My Big Campus Lingo Home Button Activity How to Follow a person Conversations Account.
Date: Your Ideas in Your Words Your research question: Citation How is this information helpful? Information from Resource [date][type your question here]
Tech Tool: Destiny—Personal Accounts Classroom Experts:
Search the online catalogue Does the library have the book I want?
WELCOME TO GGC BOOKING Where you can book a library room Enter Site GGC ID Password.
How to Search Books (OPAC guide)
Searching for TIME magazine articles in Goleman Library databases
Using the Advanced Search Guided Style Find Fields on
Beginning with the Spring 2017 semester, WorldCat Discovery Services will replace the HELIN Catalog as the way patrons can search our library’s collection.
Library Catalog
NUTRITION RESEARCH PROJECT
Using RefWorks Searching EWU Libraries’ Online Catalog From
FIU Library Catalog Team 13.
How to request space for your meeting/event with the EMS WebApp
Accessing Medline filters using NLH Search 2.0
Health On-Line Patient Education Web Site
To conduct a basic search of physical books and materials specifically in LCC’s library select this drop down menu.
Creating a works cited page
HOW TO SEARCH USING ONLINE DATABASE
Student Portal Tutorial (Academic Staff) myportal.uoz.edu.krd
Library Search Procedure
Great Resource of Newspapers and Magazines
Timeline of Events.
CREDIT CARD TUTORIAL HOW TO FIND TRANSACTIONS USING ADVANCED QUERY - BY DATE RANGE FOR APPROVER IN PAYMENTNET.
CREDIT CARD TUTORIAL HOW TO FIND TRANSACTIONS USING ADVANCED QUERY - BY DATE RANGE FOR CARDHOLDER IN PAYMENTNET.
Presentation transcript:

THIRD THURSDAY BOOK CLUB PICKS DATABASE ASSIGNMENT Jean Mead LS560

HART COUNTY LIBRARY WEBSITE

WEBSITE & CHANGES The Hart County Library Website does not have a search option on the site for our patrons to search anything, including events or books that the Third Thursday Book Club have read. Since I facilitate the book club, my goal is to create a tool that patrons and the facilitator can use to search books read in book club according to a variety of data points such as: author name, date read or book title. I created three tables: Author, Books, and Date.

TABLES I created three tables. The Author table has an ID number, First Name and Last Name The Book Table has Book ID number, Title, Author ID number, Book type (Fic or Non Fic) and Genre. The Date Table has the Date Read, Author ID number and Book ID number.

AUTHOR TABLE

BOOK TABLE

DATE TABLE

RELATIONSHIPS My relationships were: From Author table to Book table: Author ID to Author ID & Last Name to Title. The relationship between Book table and Date table was Book ID to Book ID.

QUERY 1: How many books by Sarah Addison Allen have we read in book club? SELECT "Authors"."Last Name", "Books"."Title", "Date"."Date Read" FROM "Books", "Authors", "Date" WHERE "Books"."AuthorID" = "Authors"."Author ID" AND "Date"."BookID" = "Books"."BookID" AND "Authors"."Last Name" = 'Allen' ORDER BY "Authors"."Last Name" ASC Answer: 2. “Garden Spells” in 2012 and “The Girl that Chased the Moon” in 2013.

QUERY 1:

ANSWER: 2 BOOKS

QUERY 2: When did we read the book “Blue” SELECT "Authors"."Last Name", "Books"."Title", "Date"."Date Read" FROM "Books", "Authors", "Date" WHERE "Books"."AuthorID" = "Authors"."Author ID" AND "Date"."BookID" = "Books"."BookID" AND "Books"."Title" = 'Blue' ORDER BY "Books"."Title" ASC Answer: 4/1/10

QUERY 2: WHEN DID WE READ “BLUE”

ANSWER: “BLUE” WAS READ 4/1/10

WEBSITE CHANGES/MOCK UP The best place to put the book club information is on the left menu. I would add a “Third Thursday Book Club” Information Button for the patrons to click on and have it send them to an advanced search form.

WEBSITE CHANGES

MOCK UP OF FORM Third Thursday Book Club We meet every third Thursday at 6pm in the small meeting room. Want to see if we have read your favorite book? Or what we have read in the past? Search the Database! By Book Title Search By Date Read Search By Author NameSearch