Database Detective Steam Chapter 5 Walkthrough: The Pizza

Solve the notorious 'Pizza Crime' in Database Detective Steam Chapter 5. This walkthrough guides you through crucial SQL queries and clues to crack the case.

Quests
2026-07-27 · Database Detective: Minor Crimes Division Wiki

Quick Guide

  • Chapter 5, the "war crimes" case, centers on a pineapple pizza incident.
  • Focus on the waitress's testimony and the customer list provided.
  • The key suspect is identified by consistently leaving the lowest percentage tips.
  • Ignore the "threatening photograph" as a primary clue; it's a distraction.

Solving cases in Database Detective: Minor Crimes Division requires sharp analytical skills and a solid understanding of SQL. Chapter 5, often referred to as the "war crimes" case or the "pizza crime," presents a particularly memorable challenge for aspiring database detectives. If you're struggling to piece together the clues and write the right queries, this Database Detective Steam Chapter 5 walkthrough will help you navigate the data and bring the culprit to justice.

This case might test your stomach more than your SQL knowledge, as it involves an act many consider culinary sacrilege. Let's delve into the details and ensure you don't take too long, or your pay might suffer!

Understanding the Chapter 5 Case Briefing

Your boss wastes no time in Chapter 5, immediately setting the tone for a truly "squeamish" case. The crime occurred at a local downtown restaurant and involves what is dramatically described as "war crimes." The suspect left a "threatening photograph" at the crime scene, and a shaken waitress witnessed the entire incident. Thankfully, she provided a testimony, a list of every customer who visited that day, and the restaurant's business card for further information.

The core of the "war crime" is quickly revealed: pineapple on pizza. Yes, that's right. Your mission, should you choose to accept it, is to find the individual responsible for this gastronomic offense. The boss also mentions removing your internet access restrictions, hinting that external information or broader SQL knowledge might be useful, though for this specific case, the provided data is paramount.

Don't get sidetracked by dramatic phrasing.

While the boss might call it "war crimes" and mention "threatening photographs," remember that the true crime in Database Detective often lies in the details of the financial or behavioral data, not the sensational elements.

Gathering Your SQL Clues

The waitress's testimony is your most critical piece of evidence in Chapter 5. She clearly states, "Pineapple and pizza together? I couldn't believe my eyes." More importantly, she provides two key pieces of information about the perpetrator:

  1. He's been there a few times before. This suggests a recurring customer, not a one-off visit.
  2. He always leaves the lowest percentage tip every time he pays. This is the golden nugget, indicating a consistent behavioral pattern that can be queried from the database.

You'll have access to the restaurant's customer data, likely including transaction history, order details, and tip percentages. Your goal is to use SQL queries to filter through this information and identify the customer who matches these specific criteria. Remember, you're looking for someone who is a repeat offender in the low-tipping department, correlating with the waitress's recollection.

Constructing Your Queries for the "Pizza Criminal"

To solve this particular case in Database Detective: Minor Crimes Division, you'll need to focus on tables that contain customer information, transaction details, and especially tip amounts. The challenge often lies in correctly joining tables and applying WHERE clauses to pinpoint the exact individual.

Here’s a general approach using SQL commands that should guide your investigation:

  1. Identify relevant tables: You'll likely need tables related to Customers, Orders, and Payments or Tips.
  2. Look for tip percentages: The waitress's testimony explicitly mentions "lowest percentage tip." You'll need to find a way to calculate or access tip percentages for each transaction.
  3. Filter by frequency: Since the suspect is a repeat customer, you might need to count the number of visits or transactions for each customer.
  4. Combine conditions: Your final query will need to combine these criteria to find the customer who has multiple transactions and consistently leaves the lowest tips.

A common pitfall, as noted by player experience, is getting distracted by the "threatening photograph." Community reports indicate that this element is largely flavor text and not a direct clue for your SQL queries. Focus on the hard data: customer IDs, transaction dates, and tip percentages.

For example, you might start by exploring customer payment histories to see who consistently tips poorly. You could use aggregate functions like AVG() or MIN() on tip percentages, grouped by customer, to identify potential suspects. Then, cross-reference this with their total number of visits.

Key Challenges and Community Insights

Many players find Chapter 5 a significant step up in complexity, with some community members on the Steam forums noting that the game's manual feels less guiding at this point. The difficulty often stems from players overthinking the case or trying to incorporate every piece of narrative into their SQL queries.

A key insight from players is that the "threatening photograph" is a red herring. While it adds to the dramatic flair of the "war crimes" case, it doesn't translate into a solvable SQL condition. Instead, the true challenge of this Database Detective Steam Chapter 5 walkthrough lies in accurately interpreting the waitress's testimony about the suspect's tipping habits and translating that into an effective query.

Another challenge can be correctly identifying the "lowest percentage tip" if the database schema isn't immediately clear. You might need to calculate percentages from raw tip amounts and total bill amounts. Be sure to explore all available columns in your tables to understand how this data is stored.

By focusing on the concrete, quantifiable details from the waitress's testimony—repeat visits and consistently low tips—you'll be well on your way to cracking this peculiar case. For more information about the game, check out the official Database Detective: Minor Crimes Division Steam page.

Frequently Asked Questions

What is the "war crimes" case in Database Detective Chapter 5?

The "war crimes" case in Database Detective Steam Chapter 5 refers to a notorious incident involving pineapple on pizza at a local restaurant. Your task as a database detective is to identify the perpetrator using SQL queries.

What are the most important clues for Database Detective Steam Chapter 5?

The most important clues for Database Detective Steam Chapter 5 are the waitress's testimony, which states the suspect is a repeat customer and consistently leaves the lowest percentage tip, and the provided customer list.

Should I pay attention to the "threatening photograph" in Chapter 5?

No, according to player experience and community reports, the "threatening photograph" in Database Detective Steam Chapter 5 is a narrative detail and a red herring. It does not provide actionable data for your SQL queries.

How do I identify the suspect in Database Detective Chapter 5 using SQL?

To identify the suspect in Database Detective Chapter 5, you'll need to write SQL queries that filter customers based on their transaction history and tip percentages. Look for customers who have multiple transactions and whose tip percentages are consistently the lowest among all patrons.