Pamela Courter SQL Portfolio

Portfolio of my SQL projects

View the Project on GitHub pamcourter/SQL-Portfolio

Brightspeed Outbound Sales reports

Task: Create reports following specified formatting to show outbound metrics such as lead count, dials, attempts and sales by list.

Screenshot of Stats by List Report-Overall by list Screenshot of Stats by List Report-By Day

Download Sql Code for List Stats by Day/Week/Overall


Show Sales counts and MRR

Screenshot of Sales MRR in List Report Download Sql Code for Sale details in List stats report


Report to show product sales with overall quantity and price

Data grouped to show overall sales stats by LeadID but with a break down of products and quantity/price

Screenshot of Sales Product Details Download SQL code for Sales Products


Report requirements to allow filtering by Record ID, Disposition, or phone number to look up customer calls.

Filters included in stored procedure parameters to allow bypass if parameter = null and show all rows if no filter was selected.

Screenshot of Call Details Download SQL code for Call Details


Lead Reassignment query

Screenshot of a query I developed to randomly assign a percentage of leads to a selectiong of agents.

This enabled us to only assign some leads for agents to call while keeping the other leads unassigned until needed. The task required a temporary table to hold a subset of leads to prevent needing to define the leads subset multiple times throughout the query. I used AI to help determine how to randomly match each item in the subset of leads to a random agent and then looped through the lead list subset so that each agent was assigned around the same number of leads.

Screenshot of Stored Procedure for Assigning Agents