{ Dystopian Database A helpful supplement for Goodread’s list of Young Adult Dystopian titles.

Slides:



Advertisements
Similar presentations
State of Connecticut Core-CT Project Query 8 hrs Updated 6/06/2006.
Advertisements

This tutorial will take approximately 15 minutes. Click here to advance. Click here to go back.
Library Workshop Early Experience in English Cert (ECE)
XP Chapter 3 Succeeding in Business with Microsoft Office Access 2003: A Problem-Solving Approach 1 Analyzing Data For Effective Decision Making.
Relational Databases What is a relational database? What would we use one for? What do they look like? How can we describe them? How can you create one?
THIRD THURSDAY BOOK CLUB PICKS DATABASE ASSIGNMENT Jean Mead LS560.
Information systems and databases Database information systems Read the textbook: Chapter 2: Information systems and databases FOR MORE INFO...
State of Connecticut Core-CT Project Query 4 hrs Updated 1/21/2011.
There is a description of each database on this page.
2.3 Organising Data for Effective Retrieval
1 Chapter 1: Finding Your Way Through a Database Exploring Microsoft Office Access 2010.
A CCESSING D ATABASES WITH JDBC CH 24 C S 442: A DVANCED J AVA P ROGRAMMING.
Chapter 1 Overview of Database Concepts Oracle 10g: SQL
Insight from Interactions 1 INSIGHT FROM INTERACTIONS
ROYAL SOCIETY OF CHEMISTRY
By: ___________________
Writing Advanced SQL Queries BKF05 Liz Lucchese. Agenda  SQL revealed  What is it and why should I care?  Advanced query interface  So, how do I use.
PubMed/Advanced Search: Using Limits (module 4.2).
COMP106 Assignment 2 Proposal 1. Interface Tasks My new interface design for the University library catalogue will incorporate all of the existing features,
+ LS 560: Database Project Tonya Olson April 14, 2014.
Visual C# 2012 How to Program © by Pearson Education, Inc. All Rights Reserved.
Using E-Class Searching for position descriptions belonging to a particular ministry.
Okalo Daniel Ikhena Dr. V. Z. Këpuska December 7, 2007.
1 Chapter 1: Finding Your Way Through a Database Exploring Microsoft Office Access 2007.
Tutorial 9 Using Action Queries and Advanced Table Relationships.
SQL by Example By convention SQL keywords are written in uppercase. SELECT * FROM Books –This query returns all rows in the Books table. –SQL statements.
Programming in R SQL in R. Running SQL in R In this session I will show you how to: Run basic SQL commands within R.
[ Part III of The XML seminar ] Presenter: Xiaogeng Zhao A Introduction of XQL.
Research Using Ebooks via the Media Center. Research usingEbooks.
NoveList Your Guide to Fiction 1. Access, Content,Sources, and Features 2. Training and Support 3. Limiting and Searching 4. Navigating the Content 5.
Procurement Query Login Using Mail User & Password.
Advanced Searching (w/ DDE & DDA)
A CCESSING D ATABASES WITH JDBC CH 24 C S 442: A DVANCED J AVA P ROGRAMMING.
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.
Lesson 13 Databases Unit 2—Using the Computer. Computer Concepts BASICS - 22 Objectives Define the purpose and function of database software. Identify.
_______________________________________________________________________________________________________________ E-Commerce: Fundamentals and Applications1.
Database: SQL, MySQL, LINQ and Java DB © by Pearson Education, Inc. All Rights Reserved.
Quick Introduction to HTML DB. Accessing HTML DB There are two ways to access HTML DB 1.In the ilearning curriculum, select the red boxed arrow that appears.
LINQ to DATABASE-2.  Creating the BooksDataContext  The code combines data from the three tables in the Books database and displays the relationships.
XP New Perspectives on Microsoft Office Access 2003, Second Edition- Tutorial 5 1 Microsoft Office Access 2003 Tutorial 5 – Enhancing a Table’s Design.
The New Interface for the Library Catalogue Proposal 10.
Creating a database - I clicked on blank database and am saving it as books10.mdb. For more information see the practice example under week #1. I am going.
XP New Perspectives on Microsoft Office Access 2003 Tutorial 4 1 Microsoft Office Access 2003 Tutorial 4 – Creating Forms and Reports.
® Microsoft Access 2010 Tutorial 9 Using Action Queries and Advanced Table Relationships.
Befriending the Library Learning Target: I can find resources in the library about an issue in a particular country.
ORDER BY Clause The result of a query can be sorted in ascending or descending order using the optional ORDER BY clause. The simplest form of.
De Gruyter eBooks User Guide
Database Mysql Hayk Avdalyan.
COP 4540 Database Management
<Dissertations>
 2012 Pearson Education, Inc. All rights reserved.
Microsoft Office Access 2003
Objectives Create an action query to create a table
This shows the user interface and the SQL Select for a situation with two criteria in an AND relationship.
Exploring Microsoft Office Access
JDBC.
Exploring Microsoft Office Access 2007
De Gruyter eBooks User Guide
Do it now activity Since the beginning of the term you have planned a database based on your own scenario. Using your plan you are going to create a database,
AD HOC Query (Report) Tool
Microsoft Office Access 2003
How To Search In Our Database
Click on Course Guides. Click on Course Guides.
De Gruyter eBooks User Guide
How to Use Destiny Discover
TOXLINE® Special Advanced
PHP and MySQL.
Exploring Microsoft Office Access
Tutorial 9 Using Action Queries and Advanced Table Relationships
Presentation transcript:

{ Dystopian Database A helpful supplement for Goodread’s list of Young Adult Dystopian titles.

As an English and History major, I focused on Education. Dystopian Literature gives you the unique ability to read and examine forms of Government. By showing the types of government in each book in the database, educators are able to teach all different types, with fun and interesting examples. It can also serve as a critique of our current government and their practices. I further separated the list into male and female protagonists, and timeframe, so that the titles are accessible to those with a preference.

Tables Author Name Books

Government Types Government Types

I inserted an advanced search option in the upper left-hand corner of the list. As the user scrolls through the titles, the button will scroll with them, so that they can click at any time. If they see a title that catches their interest, they are able to click the advanced search option and input gender, timeframe, government type, ISBN, and author. They can also search the list with these criteria without a specific title in mind. Website Mock- Up

Timeframe and Gender

Relationships

Query 1 (Earth Short-Term Future Government Types): The user wants books that take place in the short term future.

 SELECT Timeframe.timeframe, Books.title, [Government type 1].[Government modifier], [Government Type 2].[government type], [Government Type 2].[Government Description]  FROM Timeframe INNER JOIN ([Government Type 2] INNER JOIN ([Government type 1] INNER JOIN Books ON [Government type 1].[Government modifier] = Books.[Government Modifier]) ON [Government Type 2].[government type] = Books.[Government Type]) ON Timeframe.timeframe = Books.Timeframe  WHERE (((Timeframe.timeframe)="earth short term future")); Query 1 SQL Language

Query 1 Results

Query 2 (Female Main Character): The user wants to find books where the protagonist is a female.

 SELECT Perspective.Gender, Books.title, Books.[Government modifier], Books.[Government Type]  FROM Perspective INNER JOIN ([Government Type 2] INNER JOIN ([Government type 1] INNER JOIN Books ON [Government type 1].[Government modifier] = Books.[Government Modifier]) ON [Government Type 2].[government type] = Books.[Government Type]) ON Perspective.Gender = Books.Gender  WHERE (((Perspective.Gender)="female")); Query 2 SQL Language

Query 2 Results