Demo: Personal Data Concierge

This sample data delves into the core of our personal data concierge by exploring four simple interconnected tables: Cities, Courses, Enrollments, and Students.

By the end of this interaction with our concierge, you’ll gain a deeper understanding of how these tables work together to paint a picture of students, their learning paths, and the locations where it all unfolds. To take a look at the MySQL schema of the following tables, download the schema here. Please keep in mind that UnSQL is still in beta and there’s a possibility that the concierge may glitch.

Here’s a list of a few questions to ask and better understand how the concierge works:

  • Which courses have the highest enrollment rates?
  • What is the completion rate of each course, and how does it vary by city?
  • Is there a student named Emily? If yes, what courses is she taking?

  • What are the common characteristics of students who successfully complete their courses?
  • Out of Jane Smith and Emily Johnson, who completed their course?

Below is a demo video of both the personal concierge and the WhatsApp integration, as well as an excerpt of these tables for reference.

Courses

CourseID CourseName Description Duration CityID
CRS001 Introduction to Python Learn the basics of Python programming 6 weeks CTY001
CRS002 Advanced Java Master advanced Java concepts 8 weeks CTY002
CRS003 Web Development Create modern web applications 10 weeks CTY003
CRS004 Data Science Analyze data and gain insights 12 weeks CTY004
CRS005 Digital Marketing Learn digital marketing strategies 5 weeks CTY005

Students

StudentID FirstName LastName Email PhoneNumber
STD001 John Doe johndoe@example.com 555-0101
STD002 Jane Smith janesmith@example.com 555-0102
STD003 Emily Johnson emilyj@example.com 555-0103
STD004 Michael Williams michaelw@example.com 555-0104
STD005 David Brown davidb@example.com 555-0105

Enrollments

EnrollmentID StudentID CourseID EnrollmentDate CompletionStatus
ENR001 STD001 CRS001 2023-09-01 In Progress
ENR002 STD002 CRS002 2023-09-15 Completed
ENR003 STD003 CRS003 2023-10-01 In Progress
ENR004 STD004 CRS004 2023-09-15 Completed
ENR005 STD005 CRS005 2023-12-01 In Progress

Cities

CityID CityName State
CTY001 New York NY
CTY002 Los Angeles CA
CTY003 Chicago IL
CTY004 Houston TX
CTY005 Philadelphia PA