Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Lernen Challenge: Query Testing | Query Engine Basics
BigQuery Fundamentals

bookChallenge: Query Testing

Swipe um das Menü anzuzeigen

Validate calculated totals in a query by checking whether the recorded total amount matches what it should be based on quantity and unit price. The focus is on identifying incorrect records by recalculating the expected total and filtering for mismatches. The end goal is to return only the rows where the stored total is wrong, helping ensure data accuracy in transactional datasets.

The query is expected to return three specific rows, which represent records where the totals do not align correctly.

The core validation logic is:

Quantity×Unit Price=Correct Total\text{Quantity} × \text{Unit Price} = \text{Correct Total}

Compare this calculated value against the existing Total Amount column.

A new calculated column is created to represent the correct total (quantity multiplied by unit price). This makes the comparison explicit and easier to reason about.

The query then filters results to include only rows where:

Total AmountQuantity×Unit Price\text{Total Amount} ≠ \text{Quantity} × \text{Unit Price}

This approach allows you to:

  • Identify incorrect or inconsistent transactional records;
  • Debug pricing or data-entry issues;
  • Validate business logic directly within SQL rather than externally.

The challenge being solved is not about aggregations, but about row-level validation, ensuring each transaction is internally consistent.

War alles klar?

Wie können wir es verbessern?

Danke für Ihr Feedback!

Abschnitt 2. Kapitel 8

Fragen Sie AI

expand

Fragen Sie AI

ChatGPT

Fragen Sie alles oder probieren Sie eine der vorgeschlagenen Fragen, um unser Gespräch zu beginnen

Abschnitt 2. Kapitel 8
some-alt