Catcher ugB BUG CATCHER GAME: Find the error in each slide then hit Enter 1.When you see the bug above click the mouse or hit [Enter]. 2.If you need to.

Slides:



Advertisements
Similar presentations
Instruction: Use mouses left button. Use mouses left button. If mouse buttons dont work, use arrow keys of keyboard for slide show. If mouse buttons dont.
Advertisements

Instruction: Use mouses left button. Use mouses left button. If mouse buttons dont work, use arrow keys of keyboard for slide show. If mouse buttons dont.
What Are My Coin Riddles. I am 1 coin and I equal 1 cent. What am I? Think about it and click to see the answer.
Review Ch. 15 – Spreadsheet and Worksheet Basics © 2010, 2006 South-Western, Cengage Learning.
MALT©2006 Projector game M512 Time to Times Learn your tables by playing this game. Again and again.
MALT©2006 Projector game M512 Time to Times Learn your tables by playing this game. Again and again.
CREATE LOGIN James WITH PASSWORD = 'A' Answer: SQL 2005 and 2008 can enforce the password policy of the operating system. CREATE LOGIN James WITH PASSWORD.
Concepts of Database Management Seventh Edition Chapter 3 The Relational Model 2: SQL.
1 *Copyright © 2002 Pearson Education, Inc.. 2 Web Wizard’s Guide to CGI/Perl David Lash Chapter 3 Perl Basics.
EGR 106 – Week 2 – Arrays Definition, size, and terminology Construction methods Addressing and sub-arrays Some useful functions for arrays Character arrays.
EGR 106 – Week 2 – Arrays Definition, size, and terminology Construction methods Addressing and sub-arrays Some useful functions for arrays Character arrays.
This course has taken from This unique introductory SQL tutorial not only provides easy-to-understand SQL instructions, but it allows.
Concepts of Database Management Sixth Edition
Microsoft Access 2010 Chapter 7 Using SQL.
To Add a 2 nd to your NGIN Account October 9, 2012.
Problem of the Day Problem of the Day next Using a Calculator.
SQL for Data Retrieval. Save your SQL Scripts When working with SQL Management Studio, you should keep saving your scripts as a.sql file to somewhere.
Cooperating Teachers: How to Reset Your Password in Tk20 Use this after your initial account set up if you cannot remember your TK20 password.
Downloading Survey Monkey Results to a Relational Database
+ Structured Query Language Part 2 KROENKE and AUER - DATABASE CONCEPTS (6th Edition) Copyright © 2013 Pearson Education, Inc. Publishing as Prentice Hall.
 2007 Pearson Education, Inc. All rights reserved C Formatted Input/Output.
PHP : Hypertext Preprocessor
Microsoft Access Intro Class 5 Working with Queries.
® Microsoft Access 2010 Tutorial 5 Creating Advanced Queries and Enhancing Table Design.
About the Presentations The presentations cover the objectives found in the opening of each chapter. All chapter objectives are listed in the beginning.
Test Your Knowledge. x + 3 =6 a.5 b.4 c.3 d.2 y - 11= 78 a. 69 b. 89 c. 87 d. 68.
Relationships and Advanced Query Concepts Using Multiple Tables Please use speaker notes for additional information!
Open Source Server Side Scripting ECA 236 Open Source Server Side Scripting MySQL – Selecting Data.
Using Special Operators (LIKE and IN)
Concepts of Database Management Seventh Edition
1 Κατανεμημένες Διαδικτυακές Εφαρμογές Πολυμέσων Γιάννης Πετράκης.
Introduction to Programming with RAPTOR
Ch Determine the output displayed from procedures Lab sheet 10.4.
Personal Oracle8i Create a new user Create a new table Enter data into a new table Export & import data Start and exit SQL Plus SQL Plus Syntax.
Concepts of Database Management Eighth Edition Chapter 3 The Relational Model 2: SQL.
STRUCTURED QUERY LANGUAGE SQL-II IST 210 Organization of Data IST210 1.
Timer Slides These timer slides have been created for your convenience and can be used in 3 different ways: a timer slide can be inserted, as is, into.
Comp12 cont…. Using Quotes Note that we have used single quotes around the conditional values in the examples. SQL uses single quotes around text values.
SQL for Data Retrieval. Save your SQL Scripts When working with SQL Management Studio, you should keep saving your scripts as a.sql file to somewhere.
Information Technology Structured Query Language Grade11.
Student Experience It’s your education Type the web site address into the browser given to you by your junior high or high school Select “I am a student”
Variables and control statements in PL\SQL Chapter 10.
Relational Database Techniques
Concepts of Database Management Seventh Edition Chapter 3 The Relational Model 2: SQL.
Personal Oracle8i Create a new user Create a new table Enter data into a new table Export & import data Start and exit SQL Plus SQL Plus Syntax.
Introduction to Engineering MATLAB – 4 Arrays Agenda Creating arrays of numbers  Vectors: 1-D Arrays  Arrays: 2-D Arrays Array Addressing Strings & String.
Database: SQL, MySQL, LINQ and Java DB © by Pearson Education, Inc. All Rights Reserved.
# 1# 1 QueriesQueries How do we ask questions of the data? What is SELECT? What is FROM? What is WHERE? What is a calculated field? Spring 2010 CS105.
1 Finding Equations For Lines A SLIDE SHOW This slide show can be used to practice finding the equation of a line when the graph line is given. Written.
Fall Lab 131 CS105 Lab 13 – Logical Operator Precedence and Joining Tables Announcements: MP 3 released Friday, 11/20 Honors project due: Tuesday,
Answer questions about assignment.. Starting JavaScript, at my site these examples are under programs and JavaScript. You can see the address for this.
Paper 2 Exam Tips Guidance: 1.Evidence Document 2.Unit 9: – Communication ( ) 3.Unit 10: - Document Production (Word) 4.Unit 16: PowerPoint 5.Unit.
Apple Account. Step 1: Open iTunes on the desktop.
1 Chapter 3 Single Table Queries. 2 Simple Queries Query - a question represented in a way that the DBMS can understand Basic format SELECT-FROM Optional.
Sample template for portfolio - I would prefer to see you do something more original!
Structured Query Language SQL-II IST 210 Organization of Data IST2101.
Riding the Wave of Innovation
Intro to PHP & Variables
SQL.
Please see speaker notes for additional information!
SQL Tutorial.
Exploring Microsoft Office Access 2007
Miscrosoft Office..
This is the example I want the class to put up to become comfortable with creating and populating a table in Access.
Lesson 3 Chapter 10.
C Customize this banner with your own message! Select the letter and add your own text. Use one character per slide.
CATEGORY ONE Enter category name on this slide..
Using SQL with Access I create a database named
Template for the portfolio.
Presentation transcript:

Catcher ugB BUG CATCHER GAME: Find the error in each slide then hit Enter 1.When you see the bug above click the mouse or hit [Enter]. 2.If you need to go back to a step hit the up arrow key.

SELECT * FROM Employee WHERE FirstName = "James" Answer: Use Single quotes. SELECT * FROM Employee WHERE FirstName = 'James' Bug Catcher 1

SELECT * WHERE City = 'Nantucket' FROM Employee Answer: WHERE clause comes after the FROM clause. SELECT * FROM Employee WHERE City = 'Nantucket' Bug Catcher 2

SELECT * FROM Employee WHERE FirstName LIKE '%'T Answer: Both wildcard and characters go inside the quotes. SELECT * FROM Employee WHERE FirstName LIKE '%T' Bug Catcher 3

SELECT * FROM Employee WHERE FirstName = '%T' Answer: Use LIKE with a wildcard (not an equal sign). SELECT * FROM Employee WHERE FirstName LIKE '%T' Bug Catcher 4

--Trying to find Grants with percent in the name. SELECT * FROM [Grant] WHERE GrantName LIKE '%%' Answer: To make wildcards literal you must enclose in []. SELECT * FROM [Grant] WHERE GrantName LIKE '%[%]%' Bug Catcher 5

--Trying to find all Celtic names. SELECT * FROM [Grant] WHERE GrantName LIKE '%'%' Answer: Need to precede the single quote with another single quote. SELECT * FROM [Grant] WHERE GrantName LIKE '%''%' Bug Catcher 6

--Find all.gov addresses SELECT * FROM [Grant] WHERE GrantName LIKE Answer: To specify 1 or more spaces, you need an underscore and a percentage sign. SELECT * FROM [Grant] WHERE GrantName LIKE Bug Catcher 7

--Find all.gov addresses SELECT * FROM [Grant] WHERE GrantName LIKE Answer: Literal sequences of characters should not be in square brackets. SELECT * FROM [Grant] WHERE GrantName LIKE Bug Catcher 8

I know my JProCo Database has an Employee table. Why am I getting this error message? Answer: Change your database context to JProCo. Bug Catcher 9