Play SQL: Learning Database Querying using a Game

Slides:



Advertisements
Similar presentations
Query Methods (SQL). What is SQL A programming language for databases. SQL (structured Query Language) It allows you add, edit, delete and run queries.
Advertisements

Alice is a fairly new programming language developed by the Stage3 research group at Carnegie Mellon University. This program is aimed to attract students.
Using MyMathLab Features You must already be registered or enrolled in a current MyMathLab class in order to use MyMathLab. If you are not registered or.
The Harris County Library should have a coding program for kids Anna Xu 1.
Android 4: Creating Contents Kirk Scott 1. Outline 4.1 Planning Contents 4.2 GIMP and Free Sound Recorder 4.3 Using FlashCardMaker to Create an XML File.
Programming with App Inventor Computing Institute for K-12 Teachers Summer 2012 Workshop.
CHAPTER 1 XNA Game Studio 4.0. Your First Project A computer game is not just a program—it is also lots of other bits and pieces that make playing the.
Scratch Internet- Open Chrome hit “Create” 1.
Edukey Education Ltd
ASP.NET The Clock Project. The ASP.NET Clock Project The ASP.NET Clock Project is the topic of Chapter 23. By completing the clock project, you will learn.
This presentation will cover all of the work that was set during the third week of the course. This means that the task associated with the purpose of.
Using MyMathLab Features of MyMathLab You must already be registered or enrolled in a current MyMathLab class in order to use MyMathLab. If you are not.
Build Cycle 5.  Themes  US Presidents  Custom Images  Number of Moves Made  Posting to Facebook.
How to Burn ISO Files to DVD Disc From:
Presented by Cheryl Sullivan.  Name  Department  What do you want out of the training?  Favorite food.
JORDANHILL SCHOOL WEBSITE AND PODCAST TRAINING SESSION How to use ICT to enhance teaching and learning.
Our new school reading programme that joins books with eBooks
FOP: Multi-Screen Apps
Presentation 4 Creating Databases Part III (Creating Reports)
Using Kinect for educational purposes
Copyright © 2016 Pearson Canada Inc.
Implementing Responsive Design UNIT I.
Our school reading programme that joins books with eBooks
Data Collection and Analysis
Outlook Mobile App for Android
Implementing Responsive Design
Lesson 6: Enhancing Presentations
Forms and Reports 09.
Games Programming in Scratch
Scratch Unit Overview We are going to look at computer programming and how to create your very own computer game The piece of software we will be using.
Mobile Application Development
Prepared By: Isra’ Abdulhaq Hedaya Omar
Exploring Computer Science Lesson 4-13
Tutorial support.ebsco.com.
Introduction to Programmng in Python
Study Island Teacher Training
Using MyMathLab Features
Mindsensors PSP-Nx Controller Simon Game
Let's Race! Typing on the Home Row
Lesson 1: Buttons and Events – 12/18
Explain what touch develop is to your students:
Lesson 10: Building an App: Color Sleuth
Engineering Innovation Center
Chapter 16 – Programming your App’s Memory
Using online Kahoot and Socrative
Intro To Design 1 Elementary School Library: User Sub-System Class Diagrams Software Engineering CSCI-3321 Dr. Tom Hicks Computer Science Department.
Handling Data Using Databases
Creating Database Tables
IS 220 Databases Fundamentals
Completing the tasks for A452 with….
Explain what touch develop is to your students:
Explain what touch develop is to your students:
CIS16 Application Development – Programming with Visual Basic
Using MyMathLab Features
ICT Gaming Lesson 1.
Access: Access Basics Participation Project
Blackboard Committee 2017 Bb Training Program
Rambl: Hi-Fi Midway Milestone
Using CourseCompass Features
Game Over Module 4 Lesson 2.
Explain what touch develop is to your students:
eSFQ for Subject: [Sub code Sub name] Staff member: [Staff name]
Med-Fi Prototype Presentation
University of Warith AL-Anbiya’a
Explain what touch develop is to your students:
Exploring Computer Science Lesson 4-13
Number lines help to understand numbers
Primary School Computing
DCM GROUP OF SCHOOLS Presentation on : Robomate+ Robomate+ Student App.
A note about this presentation
Presentation transcript:

Play SQL: Learning Database Querying using a Game SIMPSON COLLEGE Play SQL: Learning Database Querying using a Game Mark Brodie Department of Computer Science Simpson College Indianola, IA 50125 mark.brodie@simpson.edu

Motivation Create an app to teach database querying using a game. SIMPSON COLLEGE Motivation Create an app to teach database querying using a game. The game should: Teach how to create SQL queries. Require no programming or database experience. Yet be useful for both beginners and those with SQL experience. Be fun.

SIMPSON COLLEGE Opening Screen

SIMPSON COLLEGE SQL Novice Screen

SIMPSON COLLEGE

SIMPSON COLLEGE Tutorial

SIMPSON COLLEGE

SIMPSON COLLEGE First Query is Easy

SIMPSON COLLEGE Second Query is Harder

Content of S1 – Study SELECT SIMPSON COLLEGE Content of S1 – Study SELECT The study of SELECT continues. Topics covered include: How to select more than one column. How to select all the columns using SELECT *. How to name a column in the query output. How to concatenate two or more strings or string columns.

Helpful Features of the App SIMPSON COLLEGE Helpful Features of the App User can click button to see solution to any question. User can go back to previous question. User can skip remaining questions and go to end of study. Review screen at the end of each study. User can take a quiz after studying a section. App keeps track of high-scores on each quiz. Sound effects: Applause when query is solved correctly. Raspberry for mistakes.

Study Review Screen & Quiz Screen SIMPSON COLLEGE Study Review Screen & Quiz Screen

SIMPSON COLLEGE First Quiz Question

Solve Problem as Quickly as Possible SIMPSON COLLEGE Solve Problem as Quickly as Possible

SIMPSON COLLEGE

SIMPSON COLLEGE High-Scores

At End of Quiz, App returns to Main Menu SIMPSON COLLEGE At End of Quiz, App returns to Main Menu

SIMPSON COLLEGE Overview of Entire App

SIMPSON COLLEGE Ways of Making Queries 5 different ways of creating queries in the PlaySQL game: Dragging terms onto blank places in the query. The terms of the query are shown on the screen in random order. The player has to click on them in the correct order. The query is shown with errors in it which the player has to correct. The query is shown out-of-order. The player has to re-arrange the terms to make it correct. Some terms of the query fluctuate randomly. The player has to click on them when they are correct. These different ways are introduced one-at-a-time as the player progresses through the study material.

SIMPSON COLLEGE Sequence Queries

SIMPSON COLLEGE Queries With Errors

SIMPSON COLLEGE Rearrange Queries

Queries with Varying Terms SIMPSON COLLEGE Queries with Varying Terms

SIMPSON COLLEGE Missions After doing Studies and Quizzes, the player can Launch Missions. Currently 3 missions: Single-table queries Joins All topics Each mission starts with player having a certain number of lives. More lives are given for missions with more questions. Player tries to complete mission before running out of lives.

SIMPSON COLLEGE How Missions Work Each question in a mission has a certain amount of time in which it must be completed. Time depends on the difficulty of the query. Time decreases as the player progresses further in the mission – game gets harder. Question type (blanks, sequence, errors, re-arrange, fluctuating) is chosen randomly. If the question is not solved before time runs out, the player loses a life. A lost life can be restored if the player solves a later question with sufficient time to spare.

Life Lost (left) and Restored (right) SIMPSON COLLEGE Life Lost (left) and Restored (right)

Lessons Learned Programming is fun! Like, really fun!!!!  SIMPSON COLLEGE Lessons Learned Programming is fun! Like, really fun!!!!  Programming productivity has greatly improved. Teaching programming makes you a better programmer? IDEs are much more helpful. Solving problems via the Internet. Downloading code from the Internet. Bow down to the Git God. Lots of ideas for improved pedagogy in various classes: Databases, Mobile Apps, Software Engineering.

Future Work Fix bugs. Make app work on smaller device sizes. SIMPSON COLLEGE Future Work Fix bugs. Make app work on smaller device sizes. Make app look more stylish and artistic. Add more 'gaming' elements. Include more SQL content. Decide on whether horizontal or vertical orientation is preferable. Use in database class. Get feedback from a larger user base that uses the app more extensively.

Acknowledgments Simpson College, for the sabbatical. Simpson students who provided feedback as the app was developed: Elise Tauer, George Saucedo, Karson Richardson, Ryan Policheri, Kaleb Klepel, Taylor Gehrls, Josh Dietrich, Geoff Converse, Mark Becker, Sam Adeniyi. The creators of Android's FlexBoxLayout, available on GitHub.