| [ | |
| { | |
| "id": 4, | |
| "question_en": "Which crops did well in Rumphi in terms of yield? Give me the top 5", | |
| "question_ny": "Ndi mbeu ziti zisanu zomwe anakolola mochuluka mu boma la Rumphi? Pelekani zisanu zoyambilila", | |
| "sql_statement": "SELECT crop FROM production WHERE district = 'Rumphi' ORDER BY yield DESC LIMIT 5;", | |
| "sql_result": "[('Cassava',), ('Maize',), ('Sweet potatoes',), ('Bananas',), ('Mangoes',)]", | |
| "difficulty_level": "medium", | |
| "table": "production" | |
| }, | |
| { | |
| "id": 10, | |
| "question_en": "What was the total yield of Velvet beans in the 2023-2024 season?", | |
| "question_ny": "Ndi nyemba za kalongonda zochuluka bwanji zomwe zinakololedwa mu nyengo ya 2023-2024?", | |
| "sql_statement": "SELECT SUM(Yield) as Total_Yield FROM production WHERE Crop = 'Velvet beans' AND Season = '2023-2024';", | |
| "sql_result": "[(18054.0,)]", | |
| "difficulty_level": "easy", | |
| "table": "production" | |
| }, | |
| { | |
| "id": 51, | |
| "question_en": "Which district produced the least cassava in the 2023-2024 season?", | |
| "question_ny": "Ndi boma liti lomwe linakolola chinangwa chochepa kwambiri mu nyengo ya 2023-2024?", | |
| "sql_statement": "SELECT district, MAX(yield) AS max_yield FROM production WHERE crop = 'Cassava' AND season = '2023-2024';", | |
| "sql_result": "[('Nkhotakota', 886353.0)]", | |
| "difficulty_level": "easy", | |
| "table": "production" | |
| }, | |
| { | |
| "id": 55, | |
| "question_en": "Which district produced more groundnuts in 2023-2024: Mchinji or Kasungu?", | |
| "question_ny": "Ndi boma liti lomwe linalima mtedza wochuluka mu 2023-2024: Mchinji kapena Kasungu, ?", | |
| "sql_statement": "SELECT district, MAX(yield) AS max_yield FROM production WHERE crop = 'Groundnuts' AND season = '2023-2024' AND district IN ('Mchinji','Kasungu');", | |
| "sql_result": "[('Mchinji', 51465.0)]", | |
| "difficulty_level": "hard", | |
| "table": "production" | |
| }, | |
| { | |
| "id": 57, | |
| "question_en": "What was the total production of sweet potatoes in the country in 2023-2024?", | |
| "question_ny": "Kodi ndi mbatata yochuluka bwanji yonse pamodzi idakololedwa m'dziko muno mu 2023-2024?", | |
| "sql_statement": "SELECT SUM(yield) FROM production WHERE crop = 'Sweet potatoes' AND season = '2023-2024';", | |
| "sql_result": "[(6659584.02,)]", | |
| "difficulty_level": "easy", | |
| "table": "production" | |
| }, | |
| { | |
| "id": 59, | |
| "question_en": "Which crop had the highest total production nationwide in the 2023-2024 season?", | |
| "question_ny": "Ndi mbewu iti yomwe inali ndi zokolola zochuluka m'dziko muno mu nyengo ya 2023-2024?", | |
| "sql_statement": "SELECT crop, SUM(yield) AS Sum_yield FROM production WHERE season = '2023-2024';", | |
| "sql_result": "[('Maize', 22780067.78)]", | |
| "difficulty_level": "easy", | |
| "table": "production" | |
| }, | |
| { | |
| "id": 62, | |
| "question_en": "What was the total millet production in the country in 2023-2024?", | |
| "question_ny": "Kodi ndi mapira ochuluka bwanji onse pamodzi omwe anakololedwa m'dziko muno mu nyengo ya 2023-2024?", | |
| "sql_statement": "SELECT SUM(yield) FROM production WHERE crop = 'Millet' AND season = '2023-2024';", | |
| "sql_result": "[(37928.501000000004,)]", | |
| "difficulty_level": "easy", | |
| "table": "production" | |
| }, | |
| { | |
| "id": 64, | |
| "question_en": "Which crop had the lowest total production nationwide in the 2023-2024 season?", | |
| "question_ny": "Ndi mbewu iti yomwe inali ndi zokolola zochepa kwambiri m'dziko muno mu nyengo ya 2023-2024?", | |
| "sql_statement": "SELECT crop, SUM(yield) AS Sum_yield FROM production WHERE season = '2023-2024' AND yield > 0;", | |
| "sql_result": "[('Maize', 22780067.78)]", | |
| "difficulty_level": "easy", | |
| "table": "production" | |
| }, | |
| { | |
| "id": 67, | |
| "question_en": "Which districts produced both maize and rice in the 2023-2024 season?", | |
| "question_ny": "Ndi maboma ati omwe analima chimanga ndi mpunga mu nyengo ya 2023-2024?", | |
| "sql_statement": "SELECT district FROM production WHERE season = '2023-2024'GROUP BY district HAVING SUM(CASE WHEN crop ='Maize'THEN 1 ELSE 0 END) > 0 AND SUM(CASE WHEN crop ='Rice' THEN 1 ELSE 0 END) > 0;", | |
| "sql_result": "[('Balaka',), ('Blantyre',), ('Chikwawa',), ('Chiradzulu',), ('Chitipa',), ('Dedza',), ('Dowa',), ('Karonga',), ('Kasungu',), ('Likoma',), ('Lilongwe',), ('Machinga',), ('Mangochi',), ('Mchinji',), ('Mulanje',), ('Mwanza',), ('Mzimba',), ('Neno',), ('Nkhata Bay',), ('Nkhotakota',), ('Nsanje',), ('Ntcheu',), ('Ntchisi',), ('Phalombe',), ('Rumphi',), ('Salima',), ('Thyolo',), ('Zomba',)]", | |
| "difficulty_level": "hard", | |
| "table": "production" | |
| }, | |
| { | |
| "id": 69, | |
| "question_en": "Which district produced the most pigeon peas in the 2023-2024 season?", | |
| "question_ny": "Ndi boma liti lomwe linakolola nandolo wochuluka mu nyengo ya 2023-2024?", | |
| "sql_statement": "SELECT district, MAX(yield) AS max_yield FROM production WHERE crop = 'Pigeon peas' AND season = '2023-2024';", | |
| "sql_result": "[('Mulanje', 81569.0)]", | |
| "difficulty_level": "easy", | |
| "table": "production" | |
| }, | |
| { | |
| "id": 71, | |
| "question_en": "Which districts produced groundnuts in every recorded season?", | |
| "question_ny": "Ndi maboma ati omwe analima mtedza m'nyengo zonse zolembedwa?", | |
| "sql_statement": "SELECT district FROM production WHERE crop = 'Groundnuts' GROUP BY district HAVING COUNT(DISTINCT season) = (SELECT COUNT(DISTINCT season) FROM production WHERE crop = 'Groundnuts');", | |
| "sql_result": "[('Balaka',), ('Blantyre',), ('Chikwawa',), ('Chiradzulu',), ('Chitipa',), ('Dedza',), ('Dowa',), ('Karonga',), ('Kasungu',), ('Likoma',), ('Lilongwe',), ('Machinga',), ('Mangochi',), ('Mchinji',), ('Mulanje',), ('Mwanza',), ('Mzimba',), ('Neno',), ('Nkhata Bay',), ('Nkhotakota',), ('Nsanje',), ('Ntcheu',), ('Ntchisi',), ('Phalombe',), ('Rumphi',), ('Salima',), ('Thyolo',), ('Zomba',)]", | |
| "difficulty_level": "hard", | |
| "table": "production" | |
| }, | |
| { | |
| "id": 77, | |
| "question_en": "Which district produced the most sunflower in the 2023-2024 season?", | |
| "question_ny": "Ndi boma liti lomwe linakolola mpendadzuwa wochuluka kwambiri mu nyengo ya 2023-2024?", | |
| "sql_statement": "SELECT district, MAX(yield) AS max_yield FROM production WHERE crop = 'Sunflower' AND season = '2023-2024';", | |
| "sql_result": "[('Phalombe', 4944.0)]", | |
| "difficulty_level": "easy", | |
| "table": "production" | |
| }, | |
| { | |
| "id": 78, | |
| "question_en": "What are the top 3 crops by yield in Zomba during the 2023-2024 season?", | |
| "question_ny": "Ndi mbewu ziti zitatu zomwe zinakololedwa mochuluka m'boma la Zomba mu nyengo ya 2023-2024?", | |
| "sql_statement": "SELECT crop FROM production WHERE district = 'Zomba' AND season = '2023-2024' ORDER BY yield DESC LIMIT 3;", | |
| "sql_result": "[('Maize',), ('Mangoes',), ('Pigeon peas',)]", | |
| "difficulty_level": "medium", | |
| "table": "production" | |
| }, | |
| { | |
| "id": 89, | |
| "question_en": "Which districts are in Southern region?", | |
| "question_ny": "Ndi maboma ati amene ali ku chigawo chakumwela?", | |
| "sql_statement": "SELECT DISTINCT district_name FROM population WHERE region_name = 'Southern';", | |
| "sql_result": "[('Blantyre',), ('Mangochi',), ('Zomba',), ('Thyolo',), ('Machinga',), ('Mulanje',), ('Chikwawa',), ('Mwanza',), ('Neno',), ('Nsanje',), ('Balaka',), ('Chiradzulu',), ('Phalombe',)]", | |
| "difficulty_level": "easy", | |
| "table": "population" | |
| }, | |
| { | |
| "id": 92, | |
| "question_en": "How many males are in Blantyre City?", | |
| "question_ny": "Mu mzinda wa Blantyre muli amuna ochuluka bwanji?", | |
| "sql_statement": "SELECT SUM(population_male) FROM population WHERE district_name = 'Blantyre';", | |
| "sql_result": "[(619636.0,)]", | |
| "difficulty_level": "easy", | |
| "table": "population" | |
| }, | |
| { | |
| "id": 95, | |
| "question_en": "How many households are in Chiradzulu?", | |
| "question_ny": "Ndi mabanja angati omwe ali boma la Chiradzulu?", | |
| "sql_statement": "SELECT SUM(number_households) FROM population WHERE district_name = 'Chiradzulu';", | |
| "sql_result": "[(90548.0,)]", | |
| "difficulty_level": "easy", | |
| "table": "population" | |
| }, | |
| { | |
| "id": 102, | |
| "question_en": "How many households in Chikwawa?", | |
| "question_ny": "Ndi mabanja angati omwe ali ku Chikwawa?", | |
| "sql_statement": "SELECT SUM(number_households) FROM population WHERE district_name = 'Chikwawa';", | |
| "sql_result": "[(127196.0,)]", | |
| "difficulty_level": "easy", | |
| "table": "population" | |
| }, | |
| { | |
| "id": 127, | |
| "question_en": "Find the population of Traditional Authority (TA) Area 12?", | |
| "question_ny": "Pezani chiwerengero cha anthu mdera la mfumu yayikulu 12?", | |
| "sql_statement": "SELECT SUM(CAST(total_population AS INTEGER)) FROM population WHERE ta_name = 'Area 12';", | |
| "sql_result": "[(2540,)]", | |
| "difficulty_level": "easy", | |
| "table": "population" | |
| }, | |
| { | |
| "id": 129, | |
| "question_en": "How many distinct Traditional Authorities (TAs) are there in Phalombe?", | |
| "question_ny": "Ku Phalombe kuli mafumu akuluakulu osiyanasiyana angati?", | |
| "sql_statement": "SELECT COUNT(DISTINCT ta_name) FROM population WHERE district_name = 'Phalombe';", | |
| "sql_result": "[(8,)]", | |
| "difficulty_level": "medium", | |
| "table": "population" | |
| }, | |
| { | |
| "id": 131, | |
| "question_en": "How many households in Karonga?", | |
| "question_ny": "Ku Karonga kuli mabanja angati?", | |
| "sql_statement": "SELECT SUM(number_households) FROM population WHERE district_name = 'Karonga';", | |
| "sql_result": "[(74953.0,)]", | |
| "difficulty_level": "easy", | |
| "table": "population" | |
| }, | |
| { | |
| "id": 132, | |
| "question_en": "How many distinct Traditional Authorities (TAs) are there in Lilongwe?", | |
| "question_ny": "Ku Lilongwe kuli mafumu akuluakulu osiyanasiyana angati?", | |
| "sql_statement": "SELECT COUNT(DISTINCT ta_name) FROM population WHERE district_name = 'Lilongwe';", | |
| "sql_result": "[(76,)]", | |
| "difficulty_level": "medium", | |
| "table": "population" | |
| }, | |
| { | |
| "id": 144, | |
| "question_en": "How many males in Chitipa?", | |
| "question_ny": "Ku Chitipa kuli amuna angati?", | |
| "sql_statement": "SELECT SUM(population_male) FROM population WHERE district_name = 'Chitipa';", | |
| "sql_result": "[(114392,)]", | |
| "difficulty_level": "easy", | |
| "table": "population" | |
| }, | |
| { | |
| "id": 146, | |
| "question_en": "How many Traditional Authorities (TAs) in Chiradzulu?", | |
| "question_ny": "Ku Chiradzulu kuli mafumu akuluakulu angati?", | |
| "sql_statement": "SELECT COUNT(DISTINCT ta_name) FROM population WHERE district_name = 'Chiradzulu';", | |
| "sql_result": "[(10,)]", | |
| "difficulty_level": "medium", | |
| "table": "population" | |
| }, | |
| { | |
| "id": 147, | |
| "question_en": "List all the distinct Traditional Authorities (TAs) in Neno", | |
| "question_ny": "Pelekani ndandanda wa mafumu akuluakulu osiyanasiyana ku Neno", | |
| "sql_statement": "SELECT DISTINCT ta_name FROM population WHERE district_name = 'Neno';", | |
| "sql_result": "[('TA Chekucheku',), ('Neno Boma',), ('TA Symon Likongwe',), ('TA Dambe',), ('TA Mlauli',)]", | |
| "difficulty_level": "easy", | |
| "table": "population" | |
| }, | |
| { | |
| "id": 150, | |
| "question_en": "How many males in Rural settlements?", | |
| "question_ny": "Mmadera akumidzi kuli amuna angati?", | |
| "sql_statement": "SELECT SUM(population_male) FROM population WHERE admin_status = 'Rural';", | |
| "sql_result": "[(7152151.0,)]", | |
| "difficulty_level": "easy", | |
| "table": "population" | |
| }, | |
| { | |
| "id": 162, | |
| "question_en": "What is the price of rice in Lilongwe district now", | |
| "question_ny": "Mpunga ukugulitsidwa pa mtengo wanji panopa ku Lilongwe?", | |
| "sql_statement": "SELECT district, AVG(price) as average_price FROM commodity_prices WHERE commodity = 'Rice' AND collection_date = (SELECT MAX(collection_date) FROM commodity_prices WHERE commodity = 'Rice') AND district = 'Lilongwe' GROUP BY district;", | |
| "sql_result": "[('Lilongwe', 1867.5)]", | |
| "difficulty_level": "hard", | |
| "table": "commodity_prices" | |
| }, | |
| { | |
| "id": 165, | |
| "question_en": "Which market offers the highest price for Soya beans (best place to sell)?", | |
| "question_ny": "Ndi msika uti komwe ndingakagulise Soya ndikupeza phindu lochuluka?", | |
| "sql_statement": "SELECT market, AVG(price) AS average_price\nFROM commodity_prices\nWHERE commodity = 'Soya beans'\n AND collection_date = (\n SELECT MAX(collection_date)\n FROM commodity_prices\n WHERE commodity = 'Soya beans'\n )\nGROUP BY market\nORDER BY average_price DESC\nLIMIT 1;", | |
| "sql_result": "[('Monkey Bay', 2037.81)]", | |
| "difficulty_level": "hard", | |
| "table": "commodity_prices" | |
| }, | |
| { | |
| "id": 167, | |
| "question_en": "What is the average Maize price in the district of Dowa on the most recent collection date?", | |
| "question_ny": "Mtengo wa chimanga wapakatikati m'boma la Dowa ndi uti??", | |
| "sql_statement": "SELECT AVG(price) AS average_price\nFROM commodity_prices\nWHERE commodity = 'Maize'\n AND district = 'Dowa'\n AND collection_date = (\n SELECT MAX(collection_date)\n FROM commodity_prices\n WHERE commodity = 'Maize'\n AND district = 'Dowa'\n );", | |
| "sql_result": "[(592.5,)]", | |
| "difficulty_level": "hard", | |
| "table": "commodity_prices" | |
| }, | |
| { | |
| "id": 176, | |
| "question_en": "Which district has the highest Rice price on the most recent collection date?", | |
| "question_ny": "Ndi boma liti lomwe lili ndi mtengo wokwera kwambili wa mpunga mwaposachedwapa?", | |
| "sql_statement": "SELECT district, MAX(price) AS max_price\nFROM commodity_prices\nWHERE commodity = 'Rice'\n AND collection_date = (\n SELECT MAX(collection_date)\n FROM commodity_prices\n WHERE commodity = 'Rice'\n )\nGROUP BY district\nORDER BY max_price DESC\nLIMIT 1;", | |
| "sql_result": "[('Mangochi', 3034.636)]", | |
| "difficulty_level": "hard", | |
| "table": "commodity_prices" | |
| }, | |
| { | |
| "id": 181, | |
| "question_en": "Which commodity had the highest average price in the most recent collection date?", | |
| "question_ny": "Ndi mbewu iti yomwe inali ndi mtengo wapakatikati okwera posachedwapa?", | |
| "sql_statement": "SELECT commodity, AVG(price) AS Avg_price FROM commodity_prices WHERE collection_date = (SELECT MAX(collection_date) FROM commodity_prices);", | |
| "sql_result": "[('Maize', 1702.65)]", | |
| "difficulty_level": "hard", | |
| "table": "commodity_prices" | |
| }, | |
| { | |
| "id": 198, | |
| "question_en": "What is the average price of maize across all districts?", | |
| "question_ny": "Kodi mtengo wapakatikati wa chimanga maboma onse ndi uti?", | |
| "sql_statement": "SELECT AVG(price) FROM commodity_prices WHERE commodity = 'Maize';", | |
| "sql_result": "[(737.4214640872929,)]", | |
| "difficulty_level": "easy", | |
| "table": "commodity_prices" | |
| }, | |
| { | |
| "id": 221, | |
| "question_en": "Which market recorded the lowest average price across all commodities?", | |
| "question_ny": "Ndi msika uti womwe unalemba mtengo wapakatikati wotsika kwambiri wa mbewu zonse?", | |
| "sql_statement": "SELECT market, AVG(price) AS Avg_price FROM commodity_prices;", | |
| "sql_result": "[('Misuku', 1776.67)]", | |
| "difficulty_level": "easy", | |
| "table": "commodity_prices" | |
| }, | |
| { | |
| "id": 222, | |
| "question_en": "Which commodity shows the most stable prices in Blantyre?", | |
| "question_ny": "Ndi mbewu ziti zomwe zikuwonetsa kukhazikika kwambiri kwa mitengo ku Blantyre?", | |
| "sql_statement": "SELECT commodity, (MAX(price) - MIN(price)) FROM commodity_prices WHERE district = 'Blantyre' GROUP BY commodity ORDER BY (MAX(price) - MIN(price)) ASC LIMIT 1;", | |
| "sql_result": "[('Rice', 176.03)]", | |
| "difficulty_level": "medium", | |
| "table": "commodity_prices" | |
| }, | |
| { | |
| "id": 232, | |
| "question_en": "Which market recorded the highest average price across all commodities and dates?", | |
| "question_ny": "Ndi msika uti womwe unalemba mtengo wapakatikati wokwera wa zokolola zonse pa masiku onse?", | |
| "sql_statement": "SELECT market, AVG(price) AS Avg_price FROM commodity_prices;", | |
| "sql_result": "[('Misuku', 1776.67)]", | |
| "difficulty_level": "easy", | |
| "table": "commodity_prices" | |
| }, | |
| { | |
| "id": 236, | |
| "question_en": "How many commodities have prices recorded in at least five districts?", | |
| "question_ny": "Kodi ndi zokolola ziti zomwe ali ndi mitengo yolembedwa m'maboma osachepera asanu?", | |
| "sql_statement": "SELECT COUNT(*) FROM (SELECT commodity FROM commodity_prices GROUP BY commodity HAVING COUNT(DISTINCT district) >= 5);", | |
| "sql_result": "[(6,)]", | |
| "difficulty_level": "hard", | |
| "table": "commodity_prices" | |
| }, | |
| { | |
| "id": 237, | |
| "question_en": "Which district recorded the lowest average price across all commodities?", | |
| "question_ny": "Ndi boma liti lomwe linalemba mtengo wapakatikati wotsika wa zokolola zonse?", | |
| "sql_statement": "SELECT district, AVG(price) AS Avg_price FROM commodity_prices;", | |
| "sql_result": "[('Chitipa', 1776.67)]", | |
| "difficulty_level": "easy", | |
| "table": "commodity_prices" | |
| }, | |
| { | |
| "id": 244, | |
| "question_en": "What is the average closing price of FMB Capital Holdings?", | |
| "question_ny": "Mtengo wapakatikati wa FMB Capital Holdings pamene msika umatseka ndi uti?", | |
| "sql_statement": "SELECT AVG(close_price) FROM mse_daily WHERE company_name = 'FMB Capital Holdings';", | |
| "sql_result": "[(358.39855924170615,)]", | |
| "difficulty_level": "easy", | |
| "table": "mse_daily" | |
| }, | |
| { | |
| "id": 255, | |
| "question_en": "What is the average trading volume for companies in the Telecommunications sector?", | |
| "question_ny": "Ndi mlingo uti wapakatikati wakuchuluka kwa malonda omwe kampani za lamya zachita?", | |
| "sql_statement": "SELECT AVG(volume) FROM mse_daily WHERE sector = 'Telecommunications';", | |
| "sql_result": "[(340575.4199052133,)]", | |
| "difficulty_level": "easy", | |
| "table": "mse_daily" | |
| }, | |
| { | |
| "id": 276, | |
| "question_en": "On how many trading days did Blantyre Hotels Limited close at a higher price than the previous day?", | |
| "question_ny": "Ndi masiku angati ochita malonda omwe Blantyre Hotels Limited inatseka ndi mtengo wokwera kuposa tsiku la m'mbuyo?", | |
| "sql_statement": "SELECT COUNT(*) FROM mse_daily WHERE company_name = 'Blantyre Hotels Limited' AND close_price > previous_close_price;", | |
| "sql_result": "[(29,)]", | |
| "difficulty_level": "easy", | |
| "table": "mse_daily" | |
| }, | |
| { | |
| "id": 281, | |
| "question_en": "On how many trading days did Telekom Networks Malawi close at a higher price than the previous day?", | |
| "question_ny": "Ndi masiku angati ochita malonda omwe Telekom Networks Malawi inatseka ndi mtengo wokwera kuposa tsiku la m'mbuyo?", | |
| "sql_statement": "SELECT COUNT(*) FROM mse_daily WHERE company_name = 'Telekom Networks Malawi' AND close_price > previous_close_price;", | |
| "sql_result": "[(175,)]", | |
| "difficulty_level": "easy", | |
| "table": "mse_daily" | |
| }, | |
| { | |
| "id": 284, | |
| "question_en": "What is the average closing price of Old Mutual?", | |
| "question_ny": "Kodi mtengo wapakatikati wotsekera malonda wa Old Mutual ndi uti?", | |
| "sql_statement": "SELECT AVG(close_price) FROM mse_daily WHERE company_name = 'Old Mutual';", | |
| "sql_result": "[(1720.2587298578198,)]", | |
| "difficulty_level": "easy", | |
| "table": "mse_daily" | |
| }, | |
| { | |
| "id": 285, | |
| "question_en": "What was the largest single-day percentage increase in close_price for NITL plc?", | |
| "question_ny": "Kodi kuwonjezeka kwakukulu kwambiri kwa mtengo mu tsiku limodzi kwa NITL plc kunali kotani?", | |
| "sql_statement": "SELECT MAX((close_price - previous_close_price)/previous_close_price * 100.0) FROM mse_daily WHERE company_name = 'NITL plc' AND previous_close_price > 0;", | |
| "sql_result": "[(14.999209083843985,)]", | |
| "difficulty_level": "easy", | |
| "table": "mse_daily" | |
| }, | |
| { | |
| "id": 290, | |
| "question_en": "What is the lowest closing price recorded for NBS Bank?", | |
| "question_ny": "Kodi mtengo wotsika kwambiri wotseka womwe NBS Bank inagulitsa ndi uti?", | |
| "sql_statement": "SELECT MIN(close_price) FROM mse_daily WHERE company_name = 'NBS Bank';", | |
| "sql_result": "[(20.44,)]", | |
| "difficulty_level": "easy", | |
| "table": "mse_daily" | |
| }, | |
| { | |
| "id": 295, | |
| "question_en": "Which sector has the highest average closing price?", | |
| "question_ny": "Ndi nthambi iti yomwe lili ndi mtengo wapakatikati wotsekera malonda wokwera kwambiri? ", | |
| "sql_statement": "SELECT sector, AVG(close_price) AS Avg_close_price FROM mse_daily;", | |
| "sql_result": "[('Telecommunications', 765.34)]", | |
| "difficulty_level": "easy", | |
| "table": "mse_daily" | |
| }, | |
| { | |
| "id": 297, | |
| "question_en": "What is the average closing price for companies in the Banking sector?", | |
| "question_ny": "Kodi mtengo wapakatikati wotsekera malonda wa zosungitsa ndi kubwereketsa ndalama ndi uti?", | |
| "sql_statement": "SELECT AVG(close_price) FROM mse_daily WHERE sector = 'Banking';", | |
| "sql_result": "[(1281.3135374407584,)]", | |
| "difficulty_level": "easy", | |
| "table": "mse_daily" | |
| }, | |
| { | |
| "id": 301, | |
| "question_en": "How many trading days recorded a closing price above 500 for Press Corporation Limited?", | |
| "question_ny": "Ndi masiku angati amalonda omwe Press Corporation Limited inali ndi mtengo wotsekera woposa 500?", | |
| "sql_statement": "SELECT COUNT(*) FROM mse_daily WHERE company_name = 'Press Corporation Limited' AND close_price > 500;", | |
| "sql_result": "[(1055,)]", | |
| "difficulty_level": "easy", | |
| "table": "mse_daily" | |
| }, | |
| { | |
| "id": 307, | |
| "question_en": "Which sectors have at least one company with a closing price above 1000?", | |
| "question_ny": "Ndi nthambi ziti zomwe zili ndi kampani imodzi kapena kuposa yomwe mtengo wotsekera malonda unaposa 1000?", | |
| "sql_statement": "SELECT DISTINCT sector FROM mse_daily WHERE close_price > 1000;", | |
| "sql_result": "[('Agriculture',), ('Banking',), ('Financial Services',), ('Telecommunications',)]", | |
| "difficulty_level": "easy", | |
| "table": "mse_daily" | |
| }, | |
| { | |
| "id": 315, | |
| "question_en": "What is the dividend yield of NICO?", | |
| "question_ny": "Kodi phindu ma sheya iliyonse ya NICO ndi chani? ", | |
| "sql_statement": "SELECT dividend_yield_pct, MAX(trade_date) AS max_trade_date FROM mse_daily WHERE ticker = 'NICO';", | |
| "sql_result": "[(1.15, '2025-09-10')]", | |
| "difficulty_level": "easy", | |
| "table": "mse_daily" | |
| }, | |
| { | |
| "id": 334, | |
| "question_en": "What is the unique Analyzed population in Rumphi?", | |
| "question_ny": "Chiwerengero chapaderadera cha anthu omwe adawelengeledwa ku Rumphi ndi chiti?", | |
| "sql_statement": "SELECT DISTINCT analyzed_population FROM food_insecurity WHERE district = 'Rumphi';", | |
| "sql_result": "[(259391.0,)]", | |
| "difficulty_level": "easy", | |
| "table": "food_insecurity" | |
| }, | |
| { | |
| "id": 348, | |
| "question_en": "What are the different food insecurity levels in Mchinji?", | |
| "question_ny": "Kodi milingo ya mavuto akusowa kwa chakudya osiyanasiyana ku Mchinji ndi iti?", | |
| "sql_statement": "SELECT DISTINCT insecurity_level FROM food_insecurity WHERE district = 'Mchinji';", | |
| "sql_result": "[(1,), (2,), (3,), (4,), (5,)]", | |
| "difficulty_level": "easy", | |
| "table": "food_insecurity" | |
| }, | |
| { | |
| "id": 350, | |
| "question_en": "Mention the distinct food insecurity percentages in Balaka?", | |
| "question_ny": "Tchulani mlingo wa vuto la chakudya m'boma la Balaka pa zinthu 100 zilizonse", | |
| "sql_statement": "SELECT DISTINCT percentage_population FROM food_insecurity WHERE district = 'Balaka';", | |
| "sql_result": "[(20,), (35,), (40,), (5,), (0,), (30,)]", | |
| "difficulty_level": "easy", | |
| "table": "food_insecurity" | |
| }, | |
| { | |
| "id": 356, | |
| "question_en": "Which districts had analyzed population greater than 1000000?", | |
| "question_ny": "Ndi maboma ati amene anali ndi chowengero choposa 1000000? ", | |
| "sql_statement": "SELECT DISTINCT district FROM food_insecurity WHERE analyzed_population > 1000000;", | |
| "sql_result": "[('Lilongwe',), ('Mangochi',), ('Mzimba',)]", | |
| "difficulty_level": "easy", | |
| "table": "food_insecurity" | |
| }, | |
| { | |
| "id": 357, | |
| "question_en": "Among the stressed population, which district had the most analyzed population?", | |
| "question_ny": "Muchiwerengero cha anthu ovutikitsitsa ndi kusowa kwa chakudya, ndi boma liti lomwe linali anthu ofufuzidwa ochuluka? ", | |
| "sql_statement": "SELECT district, MAX(analyzed_population) AS max_analyzed_population FROM food_insecurity WHERE insecurity_desc_short = 'stressed';", | |
| "sql_result": "[('Lilongwe', 1869640)]", | |
| "difficulty_level": "easy", | |
| "table": "food_insecurity" | |
| }, | |
| { | |
| "id": 359, | |
| "question_en": "Among the population with catastrophe or famine cases of food insecurity, which district had the highest analyzed population?", | |
| "question_ny": "Muchiwerengero cha anthu omwe anali ndi vuto ladzaoneni la njala, ndi boma liti linali ndi chiwerengero chachikulu kwambiri? ", | |
| "sql_statement": "SELECT district, MAX(analyzed_population) AS max_analyzed_population FROM food_insecurity WHERE insecurity_desc_short = 'Catastrophe or famine';", | |
| "sql_result": "[('Lilongwe', 1869640)]", | |
| "difficulty_level": "easy", | |
| "table": "food_insecurity" | |
| }, | |
| { | |
| "id": 361, | |
| "question_en": "Which district has the largest total analyzed_population across all May-September periods?", | |
| "question_ny": "Ndi boma liti lomwe linali ndi anthu owerengedwa ambiri kuyambira May mpaka September?", | |
| "sql_statement": "SELECT district, SUM(analyzed_population) AS Sum_analyzed_population FROM food_insecurity WHERE time_period LIKE '%May%' OR time_period LIKE '%May-%' OR time_period LIKE '%May–%';", | |
| "sql_result": "[('Balaka', 92153675)]", | |
| "difficulty_level": "easy", | |
| "table": "food_insecurity" | |
| }, | |
| { | |
| "id": 365, | |
| "question_en": "What is the highest food insecurity level recorded in Mchinji?", | |
| "question_ny": "Kodi mlingo wapamwamba kwambiri wa kusowa chakudya ku Mchinji ndi uti?", | |
| "sql_statement": "SELECT MAX(insecurity_level) FROM food_insecurity WHERE district = 'Mchinji';", | |
| "sql_result": "[(5,)]", | |
| "difficulty_level": "easy", | |
| "table": "food_insecurity" | |
| }, | |
| { | |
| "id": 368, | |
| "question_en": "What is the unique food insecurity percentage in Mwanza?", | |
| "question_ny": "Kodi kusowa kwa chakudya ku Mwanza ndi kotani pa zinthu 100 zilizonse?", | |
| "sql_statement": "SELECT DISTINCT percentage_population FROM food_insecurity WHERE district = 'Mwanza';", | |
| "sql_result": "[(30,), (35,), (5,), (0,)]", | |
| "difficulty_level": "easy", | |
| "table": "food_insecurity" | |
| }, | |
| { | |
| "id": 370, | |
| "question_en": "List distinct insecurity levels recorded in Zomba.", | |
| "question_ny": "Onetsani milingo yosiyanasiyana ya kusowa kwa chakudya yomwe alembedwa ku Zomba.", | |
| "sql_statement": "SELECT DISTINCT insecurity_level FROM food_insecurity WHERE district = 'Zomba';", | |
| "sql_result": "[(1,), (2,), (3,), (4,), (5,)]", | |
| "difficulty_level": "easy", | |
| "table": "food_insecurity" | |
| }, | |
| { | |
| "id": 387, | |
| "question_en": "How many distinct time periods are recorded for Rumphi?", | |
| "question_ny": "Ndi nthawi zingati zodziwika bwino zomwe zinalembedwa ku Rumphi?", | |
| "sql_statement": "SELECT COUNT(DISTINCT time_period) FROM food_insecurity WHERE district = 'Rumphi';", | |
| "sql_result": "[(2,)]", | |
| "difficulty_level": "medium", | |
| "table": "food_insecurity" | |
| }, | |
| { | |
| "id": 389, | |
| "question_en": "How many non-zero percentage populations are recorded for Likoma?", | |
| "question_ny": "Kodi Likoma inalemba magawo anthu kuyambira mmodzi owunikiridwa angati?", | |
| "sql_statement": "SELECT COUNT(*) FROM food_insecurity WHERE district = 'Likoma' AND percentage_population > 0;", | |
| "sql_result": "[(6,)]", | |
| "difficulty_level": "easy", | |
| "table": "food_insecurity" | |
| } | |
| ] |