Skip to content

Commit

Permalink
chore: update questions.json
Browse files Browse the repository at this point in the history
recieved -> received
  • Loading branch information
eltociear authored Jun 18, 2024
1 parent 14dd2fa commit 6a16cd8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions training_data/sample-fraud/questions.json
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@
"answer":"SELECT *\r\nFROM paysim_table.base_data limit 10;"
},
{
"question":"what is destination account recieved most amount of transfer through frauds ?",
"question":"what is destination account received most amount of transfer through frauds ?",
"answer":"SELECT namedest,\n sum(amount) as total_amount\nFROM paysim_table.base_data\nWHERE isfraud = 1\nGROUP BY namedest\nORDER BY total_amount desc limit 1;"
},
{
Expand Down Expand Up @@ -163,4 +163,4 @@
"question":"what are amounts of 5 biggest frauds that left the origin account at 0 balance ?",
"answer":"SELECT amount\r\nFROM paysim_table.base_data\r\nWHERE isfraud = 1\r\n and newbalanceorig = 0\r\nORDER BY amount desc limit 5;"
}
]
]

0 comments on commit 6a16cd8

Please sign in to comment.