Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update questions.json #503

Merged
merged 1 commit into from
Jul 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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;"
}
]
]