A Little Bit Sheepish: Enhancing Historic Yarn Shop Features in Berlin, MD
110 likes | 239 Vues
A Little Bit Sheepish is a charming yarn shop located in historic Berlin, MD. This proposal discusses essential website enhancements to improve customer experience. We recommend implementing a searchable event calendar, which allows users to find events by date and price. Additionally, by incorporating customer information tracking for spending habits and loyalty, we can identify returning customers. SQL queries are provided to analyze class sizes, customer spending, and available classes within specific price ranges, offering valuable insights to drive engagement and sales.
A Little Bit Sheepish: Enhancing Historic Yarn Shop Features in Berlin, MD
E N D
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 • http://www.alittlebitsheepish.com/
So, what does this site need? • Searchable Events • Date • Price • Searchable customer information • Amount spent
Online shopping, with returning customers functionality added
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.