Challenge: Query Testing
Glissez pour afficher le menu
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 TotalCompare 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 Amount=Quantity×Unit PriceThis 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.
Merci pour vos commentaires !
Demandez à l'IA
Demandez à l'IA
Posez n'importe quelle question ou essayez l'une des questions suggérées pour commencer notre discussion