Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Lære Challenge: Categorize Transactions | Logical Functions
Practice
Projects
Quizzes & Challenges
Quizzes
Challenges
/
Functions in SQL

bookChallenge: Categorize Transactions

After exploring the basics of logical functions and their application in SQL, you are ready to take on a practical challenge that puts your understanding to the test. In real-world scenarios, it is common to categorize transactions by their amount to quickly identify high-value, medium-value, or low-value activities. This kind of classification is particularly useful for business analytics, fraud detection, and reporting.

Opgave

Swipe to start coding

Write a query to classify each transaction as 'High', 'Medium', or 'Low' based on the value in the amount column.

  • Assign the label 'High' if the amount is greater than or equal to 300.
  • Assign the label 'Medium' if the amount is greater than or equal to 100 but less than 300.
  • Assign the label 'Low' if the amount is less than 100.
  • Add this classification as a column called amount_category in the result set.

Løsning

Var alt klart?

Hvordan kan vi forbedre det?

Tak for dine kommentarer!

Sektion 4. Kapitel 2
single

single

Spørg AI

expand

Spørg AI

ChatGPT

Spørg om hvad som helst eller prøv et af de foreslåede spørgsmål for at starte vores chat

Suggested prompts:

Can you give me an example of how to categorize transactions by amount in SQL?

What logical functions are commonly used for this type of classification?

Can you explain how this classification helps in fraud detection or reporting?

close

bookChallenge: Categorize Transactions

Stryg for at vise menuen

After exploring the basics of logical functions and their application in SQL, you are ready to take on a practical challenge that puts your understanding to the test. In real-world scenarios, it is common to categorize transactions by their amount to quickly identify high-value, medium-value, or low-value activities. This kind of classification is particularly useful for business analytics, fraud detection, and reporting.

Opgave

Swipe to start coding

Write a query to classify each transaction as 'High', 'Medium', or 'Low' based on the value in the amount column.

  • Assign the label 'High' if the amount is greater than or equal to 300.
  • Assign the label 'Medium' if the amount is greater than or equal to 100 but less than 300.
  • Assign the label 'Low' if the amount is less than 100.
  • Add this classification as a column called amount_category in the result set.

Løsning

Switch to desktopSkift til skrivebord for at øve i den virkelige verdenFortsæt der, hvor du er, med en af nedenstående muligheder
Var alt klart?

Hvordan kan vi forbedre det?

Tak for dine kommentarer!

Sektion 4. Kapitel 2
single

single

some-alt