+ A Little Database: LS 560 Assignment 3 Emily Bibb and Belinda Sawyer.

Slides:



Advertisements
Similar presentations
SQL Database for a Book Store Clinton McKay. Explanation The database contains information about the books held in stock, their authors, publishers, customers,
Advertisements

09/04/2015Unit 2 (b) Back-Office processes Unit 2 Assessment Criteria (b) 10 marks.
Page 1 INTEL POINTS: Vouchers The process.
Relationship and Query Assignment. Creating Relationship Assignment: Create a blank database (use any names you like) And then, import the three Excel.
Project 1 Assignment Building a mini-database for CCI in UNCC which includes entity sets: departments (CS,SIS, bioinformatics), faculties, courses given.
Copyright © 2003 Addison-Wesley Instructor Information Here.
© 2014 Cengage Learning. All Rights Reserved. Learning Objectives © 2014 Cengage Learning. All Rights Reserved. LO1 Explain the relationship between the.
1 Sample SQL Applications Asst. Prof. Emin Korkut.
Some Introductory Programming 1. Structured Query Language - used for queries. - a standard database product. 2. Visual Basic for Applications - use of.
THIRD THURSDAY BOOK CLUB PICKS DATABASE ASSIGNMENT Jean Mead LS560.
Case study Lisa’s Bookstore IST210.
Overview and key features.  Each page will be embedded SEO friendly tag  Tags are editable for users.
Mecca Cosmetica prides itself on “helping you look and feel your best”. With 25 stores across Australia and New Zealand their retail proposition focuses.
Sumter County Recreation Team 3 Consulting Project Chase Jackson Connor Hammersmith Austin Graham Steven Holt.
CPS120: Introduction to Computer Science Information Systems: Database Management Nell Dale John Lewis.
Facebook Your Portal Chronological Content vs. Pagelet Content.
Chapter 9, Section 2.  Used to record payments of cash  Cash is always credited  Special vs. General amount columns.
Solving Systems of Equations using Substitution
After reviewing this lesson enrollment advisors will be able to create effective queries by using the IS3 database to improve time management skills and.
Your Name Here See Page Notes for Info about Hyperlinks.
Search advertising on Agency Logo Here Presentation to [Client Name] [Agency Name] [Month Date, Year] 1.
Database Design II (Case Studies: Step 2) IST 210: Organization of Data IST2101.
May 31, 2013 America to Go Town Hall. 2 Agenda Project Overview America to Go Benefits Screenshots of America to Go Project Timeline How to Prepare.
LIS-560 Database Assignment Kelly’s Kids Database Design by Chrystie Kroeker Boggs.
Register a Customer for Services Chapter 6. Register a Customer for Services 6-2 Objectives Adding customer services to a single customer depicting a.
Setting Objectives. How do you know if you have succeeded or failed, won or lost? By setting objectives/goals.
Forms and Subforms 5.02 Understand database queries, forms, and reports used in business.
AFI Top Ten Database Ben English Emma Backman. The Tables.
Burapha University, 2003 Object-Oriented Analysis Basic of Object Mapping to Relational Database.
$9.95 per software license* * US pricing (local currency pricing available) ** Access to a copy of either Microsoft Office Professional Plus 2016 or.
A Quick Intro and Demo Michael D. Martinez Department of Political Science October 12, 2009.
Lars Perner, Instructor 1 MKTG 476RELATIONAL DATABASES Relational Databases “Flat” databases and spreadsheets Relational databases Uses –Record keeping.
Microsoft Access A Hands-On Introduction Chapter 3.
Data Mining Using The YESCO Workbench. Resource Menu – Commonly Used Area’s »AP Invoices »Billings »Customer Sites »Customers »General Ledger »Job Releases.
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.
University Centers The First Survey Fred Baus, University Center of Greenville Catherine Watt, Clemson University.
Fundamentals of Online Promotion
Understand Project Costs…  How much will the project cost?  Are we on budget?  How much have we spent on materials versus labor?
Power Designer n See course web page for additional information on using Power Designer n Business rules – Come from a description of activities – Example.
{ Website Implementation Chen Young Austin Suchit Trevor Jordan.
Home Appraisal Information. What is zillow.com Zillow.com is a website that gives information on estimates on the values of people homes.
Do Now Take out Worksheets from class yesterday Continue to work on them.
DATA MODELING AND ENTITY-RELATIONSHIP MODEL II IST 210: Organization of Data IST210 1.
ANNOUNCEMENTS. EVENTS CALENDAR TITLE OF EVENT Details about the event. Date: Month, Day Time: 00:00-00:00 Location: Campus Building.
Assignment 2 Due Thursday Feb 9, 2006
انشاء موقع الكتروني.
Tap into your customer database in one handy place
SQL Server 2016 Hybrid HyperScale Offer.
INF 322 Enthusiastic Study/snaptutorial.com
Consumer Benefits of Web Marketing
© 2014 Cengage Learning. All Rights Reserved.
Alternative Internet Marketing Techniques
© 2014 Cengage Learning. All Rights Reserved.
5.02 Understand database queries, forms, and reports used in business.

ORGANIZATION________________________________________ DATE ____________
Band Booster Information Night
LESSON 10-1 Accounting for Sales on Account
Relations, Domain and Range
© 2014 Cengage Learning. All Rights Reserved.
© 2014 Cengage Learning. All Rights Reserved.
Required queries FdSc inICT Module 107.
Do it now – PAGE 10 You will find your do it now task in your workbook – look for the start button! Sunday, 28 April 2019.
Search Demo.
Purchase More with Don’tPayAll Apparel Coupons. Online merchants use coupons and vouchers to lure customers.
Title: Date: Cause: Event: Effect: Title: Title: Title: Date: Cause:
Lab 2: Retrieving Data from the Database
Speaker name Title Title
Speaker name Title Title
Presentation transcript:

+ A Little Database: LS 560 Assignment 3 Emily Bibb and Belinda Sawyer

+ A Little Bit Sheepish: a yarn shop in historic Berlin, MD

+ Newsletter Sign-up

+ Events Calendar

+ Online shopping

+ So, what does this site need? Searchable Events Date Price Searchable customer information Amount spent

+ Relationships

+ Online shopping, with returning customers functionality added

+ Events, before and after

+ SQL Query 1: To determine class size SELECT "eventtitle", "instructor", "enrollment" FROM "events" WHERE "enrollment" <= 8 ORDER BY "eventtitle" Query 2: To determine a customer’s spending SELECT "purchaseID", "customer", "amountpaid", "date" FROM "purchases" WHERE "customer" = 1234 ORDER BY "date" ASC Query 3: To find available classes within a certain price range SELECT "eventtitle", "startdate", "crafttype", "cost" FROM "events" WHERE "cost" <= 40 ORDER BY "startdate" ASC

+ Sample Report: Classes where enrollment was equal to or less than 8 participants, ordered by Class Title.