Melissa Ullrich's Resume

Examples of MySQL query & what the results may look like

Setting up a table called "tickets"

Query 1 Example

CREATE TABLE tickets ( 
ticket_id INT AUTO_INCREMENT PRIMARY KEY,
project_name VARCHAR(255),
member_id INT,
subject VARCHAR(255) NOT NULL,
description TEXT,
intent VARCHAR(255),
status ENUM('open', 'closed', 'pending') NOT NULL DEFAULT 'open',
priority ENUM('low', 'medium', 'high') NOT NULL DEFAULT 'medium',
assignedto INT,
updatedby INT,
channel VARCHAR(255),
created DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
first_response DATETIME,
update_response DATETIME,
resolved DATETIME,
member VARCHAR(255),
sv_month DECIMAL(10,2),
sv_quarter DECIMAL(10,2),
sv_life DECIMAL(25,2),
tags longtext,
csat DECIMAL(3,2),
sentiment VARCHAR(255),
INDEX (member_id),
INDEX (assignedto),
INDEX (updatedby)
);

Result

Mouse over the images to zoom in/out

Image of the query as seen on the server after being run

Results for tickets tagged by RPG

Details from tables: game_db and tickets

Query 2 Example.

SELECT
    t.ticket_id,
    g.proj_name AS "Game Name",
    g.studio_name,
    g.proj_status AS "Life Cycle",
    t.subject as "Breadcrumb",
    t.description as "Help Request"
FROM
    tickets t
LEFT JOIN
    game_db g ON t.project_name = g.proj_name
WHERE
    t.tags LIKE '%rpg%';
	--t.lable LIKE '%rpg%'; 

Result

Mouse over the images to zoom in/out

Image of the query as seen on the server after being run


Agent Tickets in a Timeframe & feedback offered

Details from tables: game_db, agent and tickets

Search for results by agent 203

SELECT 
    t.project_name,
    t.date_created AS "Contact Date",
    t.subject AS "Breadcrumb",
    t.player_feedback AS "Sentiments",
    t.status,
    a.agent_login,
    a.agent_team,
    g.studio_name AS "Game Studio",
    t.tags,
    t.lastdate_closed
FROM tickets t
JOIN agent a ON t.assignedto = a.agent_id
JOIN game_db g ON t.project_name = g.proj_name
WHERE a.agent_id = 203
  AND t.player_feedback IS NOT NULL
  AND t.player_feedback <> ''
  -- AND t.date_created >= NOW() - INTERVAL 30 DAY
  AND t.date_created BETWEEN '2024-12-01' AND '2024-12-13'
ORDER BY t.date_created DESC;

This time I'm searching by an Agent Team instead of a specific Agent

SELECT 
    t.project_name,
    t.date_created AS "Contact Date",
    t.subject AS "Breadcrumb",
    t.player_feedback AS "Sentiments",
    t.status,
    a.agent_id,
    a.agent_team,
    g.studio_name AS "Game Studio",
    t.tags,
    t.lastdate_closed
FROM tickets t
JOIN agent a ON t.assignedto = a.agent_id
JOIN game_db g ON t.project_name = g.proj_name
-- WHERE a.agent_id = 203
  WHERE a.agent_team = 'ClientCare Hub'
  AND t.player_feedback IS NOT NULL
  AND t.player_feedback <> ''
  -- AND t.date_created >= NOW() - INTERVAL 30 DAY
  AND t.date_created BETWEEN '2024-12-01' AND '2024-12-13'
ORDER BY t.date_created DESC;

Results for a single Agent search: 203

Mouse over the images to zoom in/out

Image of the query as seen on the server after being run

Results for a all matches of the ClientCare Hub team

Image of the query as seen on the server after being run

New Images will be added later.

Fun Fact

I utilized the AI language model "ChatGPT" to assist in brainstorming generic game titles and studio names for 50 database entries. This streamlined the process of creating placeholder data for testing purposes. This approach also effectively prevented any unintentional disclosure of information related to previous projects due to the confidentiality agreements associated with my prior work. Importantly, the generated game titles and studio names are purely fictional and do not represent any actual games or companies. Please contact me if you need me to remove contents due to copyright via info@mullrich.com

Click to Expand.

Games

Related SQL Data AI Generation
game_01 Echoes of the Rift - Action RPG (Players journey through parallel worlds, battling enemies and uncovering ancient secrets)
game_02 Steel Horizon: Reborn - Sci-Fi FPS / Action (A futuristic shooter where players reclaim a ruined Earth from alien invaders)
game_03 Neon Forge - Cyberpunk Strategy / Simulation (Players build and manage a futuristic black market, crafting weapons and gear for mercenaries)
game_04 Shadowfall Chronicles - Tactical RPG (A turn-based strategy game set in a dark fantasy world, focusing on team-based combat and story-driven quests)
game_05 Vanguard's Edge - Multiplayer Online Battle Arena (MOBA) (A competitive game where teams of heroes battle for control of a futuristic battlefield)
game_06 Aetherborn: Lost Worlds - Open-World Action RPG (Exploration-based RPG set in floating islands where players fight, explore, and shape the environment)
game_07 Crimson Skies: Fallen Dominion - Flight Combat Sim (Players take control of airships in a post-apocalyptic world, engaging in high-speed aerial dogfights)
game_08 Wraiths of the Fallen Realm - Horror RPG (A survival RPG where players must navigate a haunted world and uncover the mystery of their own death)
game_09 Eclipse Rising - 4X Strategy (A space exploration game where players build civilizations, explore galaxies, and manage resources to conquer the cosmos)
game_10 Galactic Ascendants - Space MMO (Massively multiplayer online game where players form factions, explore space, and engage in large-scale space battles)
game_11 Phantom Nexus: Dark Frontier - Stealth Action (A tactical stealth game in a dystopian future where players must infiltrate corporations and survive against deadly enemies)

Studios

Related SQL Data AI Generation
studio_name_01 Aetherworks Interactive – The creators of Echoes of the Rift and Aetherborn: Lost Worlds, known for their immersive storytelling and world-building expertise.
studio_name_02 Nebula Forge Studios – Behind Steel Horizon: Reborn and Neon Forge, specializing in futuristic, action-packed experiences with a focus on high-tech environments and mechanics.
studio_name_03 Eclipse Studios – Developers of Eclipse Rising, Shadowfall Chronicles, and Crimson Skies: Fallen Dominion, bringing tactical gameplay and high-stakes combat to life with dynamic narratives.
studio_name_04 Vanguard Collective – Responsible for Vanguard's Edge and Galactic Ascendants, they are known for crafting competitive multiplayer experiences and massive online universes.
studio_name_05 Phantom Nexus Games – The team behind Wraiths of the FallenRealm and Phantom Nexus: Dark Frontier, masters of horror, stealth, and intense atmospheric designs.