diff --git a/training_data/sample-fraud/questions.json b/training_data/sample-fraud/questions.json index 980400b5..04e18f3f 100644 --- a/training_data/sample-fraud/questions.json +++ b/training_data/sample-fraud/questions.json @@ -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;" }, { @@ -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;" } - ] \ No newline at end of file + ]