question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
What is the attendance rate for the Middlesbrough opponent? | CREATE TABLE table_name_27 (attendance VARCHAR, opponent VARCHAR) | SELECT attendance FROM table_name_27 WHERE opponent = "middlesbrough" | ### Context: CREATE TABLE table_name_27 (attendance VARCHAR, opponent VARCHAR) ### Question: What is the attendance rate for the Middlesbrough opponent? ### Answer: SELECT attendance FROM table_name_27 WHERE opponent = "middlesbrough" |
The capital of funadhoo has what local letter? | CREATE TABLE table_name_28 (local_letter VARCHAR, capital VARCHAR) | SELECT local_letter FROM table_name_28 WHERE capital = "funadhoo" | ### Context: CREATE TABLE table_name_28 (local_letter VARCHAR, capital VARCHAR) ### Question: The capital of funadhoo has what local letter? ### Answer: SELECT local_letter FROM table_name_28 WHERE capital = "funadhoo" |
Tell me the venue for extra of short race and year less than 1999 | CREATE TABLE table_name_90 (venue VARCHAR, extra VARCHAR, year VARCHAR) | SELECT venue FROM table_name_90 WHERE extra = "short race" AND year < 1999 | ### Context: CREATE TABLE table_name_90 (venue VARCHAR, extra VARCHAR, year VARCHAR) ### Question: Tell me the venue for extra of short race and year less than 1999 ### Answer: SELECT venue FROM table_name_90 WHERE extra = "short race" AND year < 1999 |
Tell me the sum of year for 5th result | CREATE TABLE table_name_12 (year INTEGER, result VARCHAR) | SELECT SUM(year) FROM table_name_12 WHERE result = "5th" | ### Context: CREATE TABLE table_name_12 (year INTEGER, result VARCHAR) ### Question: Tell me the sum of year for 5th result ### Answer: SELECT SUM(year) FROM table_name_12 WHERE result = "5th" |
Tell me the extra for tournament of olympic games | CREATE TABLE table_name_14 (extra VARCHAR, tournament VARCHAR) | SELECT extra FROM table_name_14 WHERE tournament = "olympic games" | ### Context: CREATE TABLE table_name_14 (extra VARCHAR, tournament VARCHAR) ### Question: Tell me the extra for tournament of olympic games ### Answer: SELECT extra FROM table_name_14 WHERE tournament = "olympic games" |
Tell me the highest year for result of 9th | CREATE TABLE table_name_98 (year INTEGER, result VARCHAR) | SELECT MAX(year) FROM table_name_98 WHERE result = "9th" | ### Context: CREATE TABLE table_name_98 (year INTEGER, result VARCHAR) ### Question: Tell me the highest year for result of 9th ### Answer: SELECT MAX(year) FROM table_name_98 WHERE result = "9th" |
Tell me the shigella for yersinia yopb | CREATE TABLE table_name_52 (shigella VARCHAR, yersinia VARCHAR) | SELECT shigella FROM table_name_52 WHERE yersinia = "yopb" | ### Context: CREATE TABLE table_name_52 (shigella VARCHAR, yersinia VARCHAR) ### Question: Tell me the shigella for yersinia yopb ### Answer: SELECT shigella FROM table_name_52 WHERE yersinia = "yopb" |
Tell me the shigella and yscn | CREATE TABLE table_name_15 (shigella VARCHAR, yersinia VARCHAR) | SELECT shigella FROM table_name_15 WHERE yersinia = "yscn" | ### Context: CREATE TABLE table_name_15 (shigella VARCHAR, yersinia VARCHAR) ### Question: Tell me the shigella and yscn ### Answer: SELECT shigella FROM table_name_15 WHERE yersinia = "yscn" |
Tell me the opponent for november 24, 1996 | CREATE TABLE table_name_39 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_39 WHERE date = "november 24, 1996" | ### Context: CREATE TABLE table_name_39 (opponent VARCHAR, date VARCHAR) ### Question: Tell me the opponent for november 24, 1996 ### Answer: SELECT opponent FROM table_name_39 WHERE date = "november 24, 1996" |
Tell me the tv time for attendance of 60,894 | CREATE TABLE table_name_86 (tv_time VARCHAR, attendance VARCHAR) | SELECT tv_time FROM table_name_86 WHERE attendance = "60,894" | ### Context: CREATE TABLE table_name_86 (tv_time VARCHAR, attendance VARCHAR) ### Question: Tell me the tv time for attendance of 60,894 ### Answer: SELECT tv_time FROM table_name_86 WHERE attendance = "60,894" |
Tell me the lowest week for attendance of 60,894 | CREATE TABLE table_name_37 (week INTEGER, attendance VARCHAR) | SELECT MIN(week) FROM table_name_37 WHERE attendance = "60,894" | ### Context: CREATE TABLE table_name_37 (week INTEGER, attendance VARCHAR) ### Question: Tell me the lowest week for attendance of 60,894 ### Answer: SELECT MIN(week) FROM table_name_37 WHERE attendance = "60,894" |
Which Ensemble Name has the Advertisement date October 2007? | CREATE TABLE table_name_79 (ensemble_name VARCHAR, advertisement_date VARCHAR) | SELECT ensemble_name FROM table_name_79 WHERE advertisement_date = "october 2007" | ### Context: CREATE TABLE table_name_79 (ensemble_name VARCHAR, advertisement_date VARCHAR) ### Question: Which Ensemble Name has the Advertisement date October 2007? ### Answer: SELECT ensemble_name FROM table_name_79 WHERE advertisement_date = "october 2007" |
Who is the Winning Applicant of Block 10B in Derbyshire Area? | CREATE TABLE table_name_39 (winning_applicant VARCHAR, block VARCHAR, area VARCHAR) | SELECT winning_applicant FROM table_name_39 WHERE block = "10b" AND area = "derbyshire" | ### Context: CREATE TABLE table_name_39 (winning_applicant VARCHAR, block VARCHAR, area VARCHAR) ### Question: Who is the Winning Applicant of Block 10B in Derbyshire Area? ### Answer: SELECT winning_applicant FROM table_name_39 WHERE block = "10b" AND area = "derbyshire" |
Which Block does Northamptonshire Area have? | CREATE TABLE table_name_25 (block VARCHAR, area VARCHAR) | SELECT block FROM table_name_25 WHERE area = "northamptonshire" | ### Context: CREATE TABLE table_name_25 (block VARCHAR, area VARCHAR) ### Question: Which Block does Northamptonshire Area have? ### Answer: SELECT block FROM table_name_25 WHERE area = "northamptonshire" |
What is Ensemble Name Muxco Gloucestershire's Advertisement Date in Block 10C? | CREATE TABLE table_name_17 (advertisement_date VARCHAR, block VARCHAR, ensemble_name VARCHAR) | SELECT advertisement_date FROM table_name_17 WHERE block = "10c" AND ensemble_name = "muxco gloucestershire" | ### Context: CREATE TABLE table_name_17 (advertisement_date VARCHAR, block VARCHAR, ensemble_name VARCHAR) ### Question: What is Ensemble Name Muxco Gloucestershire's Advertisement Date in Block 10C? ### Answer: SELECT advertisement_date FROM table_name_17 WHERE block = "10c" AND ensemble_name = "muxco gloucestershire" |
What is Oxfordshire Area's Ensemble Name? | CREATE TABLE table_name_29 (ensemble_name VARCHAR, area VARCHAR) | SELECT ensemble_name FROM table_name_29 WHERE area = "oxfordshire" | ### Context: CREATE TABLE table_name_29 (ensemble_name VARCHAR, area VARCHAR) ### Question: What is Oxfordshire Area's Ensemble Name? ### Answer: SELECT ensemble_name FROM table_name_29 WHERE area = "oxfordshire" |
Who is the Winning Applicant of Ensemble Name Muxco Lincolnshire in Block 10D? | CREATE TABLE table_name_45 (winning_applicant VARCHAR, block VARCHAR, ensemble_name VARCHAR) | SELECT winning_applicant FROM table_name_45 WHERE block = "10d" AND ensemble_name = "muxco lincolnshire" | ### Context: CREATE TABLE table_name_45 (winning_applicant VARCHAR, block VARCHAR, ensemble_name VARCHAR) ### Question: Who is the Winning Applicant of Ensemble Name Muxco Lincolnshire in Block 10D? ### Answer: SELECT winning_applicant FROM table_name_45 WHERE block = "10d" AND ensemble_name = "muxco lincolnshire" |
What was the average crowd size of games held at Glenferrie Oval? | CREATE TABLE table_name_43 (crowd INTEGER, venue VARCHAR) | SELECT AVG(crowd) FROM table_name_43 WHERE venue = "glenferrie oval" | ### Context: CREATE TABLE table_name_43 (crowd INTEGER, venue VARCHAR) ### Question: What was the average crowd size of games held at Glenferrie Oval? ### Answer: SELECT AVG(crowd) FROM table_name_43 WHERE venue = "glenferrie oval" |
What was the home team's score at the game attended by more than 24,637? | CREATE TABLE table_name_81 (home_team VARCHAR, crowd INTEGER) | SELECT home_team AS score FROM table_name_81 WHERE crowd > 24 OFFSET 637 | ### Context: CREATE TABLE table_name_81 (home_team VARCHAR, crowd INTEGER) ### Question: What was the home team's score at the game attended by more than 24,637? ### Answer: SELECT home_team AS score FROM table_name_81 WHERE crowd > 24 OFFSET 637 |
What was the time for the man who scored 1 point? | CREATE TABLE table_name_89 (time VARCHAR, points VARCHAR) | SELECT time FROM table_name_89 WHERE points = 1 | ### Context: CREATE TABLE table_name_89 (time VARCHAR, points VARCHAR) ### Question: What was the time for the man who scored 1 point? ### Answer: SELECT time FROM table_name_89 WHERE points = 1 |
Who was the away team when the VFL played at MCG? | CREATE TABLE table_name_56 (away_team VARCHAR, venue VARCHAR) | SELECT away_team FROM table_name_56 WHERE venue = "mcg" | ### Context: CREATE TABLE table_name_56 (away_team VARCHAR, venue VARCHAR) ### Question: Who was the away team when the VFL played at MCG? ### Answer: SELECT away_team FROM table_name_56 WHERE venue = "mcg" |
What was the crowd when the VFL played MCG? | CREATE TABLE table_name_49 (crowd INTEGER, venue VARCHAR) | SELECT MIN(crowd) FROM table_name_49 WHERE venue = "mcg" | ### Context: CREATE TABLE table_name_49 (crowd INTEGER, venue VARCHAR) ### Question: What was the crowd when the VFL played MCG? ### Answer: SELECT MIN(crowd) FROM table_name_49 WHERE venue = "mcg" |
What was the crowd when Melbourne was the home team? | CREATE TABLE table_name_70 (crowd INTEGER, home_team VARCHAR) | SELECT AVG(crowd) FROM table_name_70 WHERE home_team = "melbourne" | ### Context: CREATE TABLE table_name_70 (crowd INTEGER, home_team VARCHAR) ### Question: What was the crowd when Melbourne was the home team? ### Answer: SELECT AVG(crowd) FROM table_name_70 WHERE home_team = "melbourne" |
What is the total of lane(s) for swimmers from Sweden with a 50m split of faster than 26.25? | CREATE TABLE table_name_24 (lane INTEGER, nationality VARCHAR, split__50m_ VARCHAR) | SELECT SUM(lane) FROM table_name_24 WHERE nationality = "sweden" AND split__50m_ < 26.25 | ### Context: CREATE TABLE table_name_24 (lane INTEGER, nationality VARCHAR, split__50m_ VARCHAR) ### Question: What is the total of lane(s) for swimmers from Sweden with a 50m split of faster than 26.25? ### Answer: SELECT SUM(lane) FROM table_name_24 WHERE nationality = "sweden" AND split__50m_ < 26.25 |
What is the slowest 50m split time for a total of 53.74 in a lane of less than 3? | CREATE TABLE table_name_8 (split__50m_ INTEGER, time VARCHAR, lane VARCHAR) | SELECT MAX(split__50m_) FROM table_name_8 WHERE time = 53.74 AND lane < 3 | ### Context: CREATE TABLE table_name_8 (split__50m_ INTEGER, time VARCHAR, lane VARCHAR) ### Question: What is the slowest 50m split time for a total of 53.74 in a lane of less than 3? ### Answer: SELECT MAX(split__50m_) FROM table_name_8 WHERE time = 53.74 AND lane < 3 |
What is the total sum of 50m splits for josefin lillhage in lanes above 8? | CREATE TABLE table_name_24 (split__50m_ INTEGER, name VARCHAR, lane VARCHAR) | SELECT SUM(split__50m_) FROM table_name_24 WHERE name = "josefin lillhage" AND lane > 8 | ### Context: CREATE TABLE table_name_24 (split__50m_ INTEGER, name VARCHAR, lane VARCHAR) ### Question: What is the total sum of 50m splits for josefin lillhage in lanes above 8? ### Answer: SELECT SUM(split__50m_) FROM table_name_24 WHERE name = "josefin lillhage" AND lane > 8 |
What was the score for the home team St Kilda? | CREATE TABLE table_name_60 (home_team VARCHAR) | SELECT home_team AS score FROM table_name_60 WHERE home_team = "st kilda" | ### Context: CREATE TABLE table_name_60 (home_team VARCHAR) ### Question: What was the score for the home team St Kilda? ### Answer: SELECT home_team AS score FROM table_name_60 WHERE home_team = "st kilda" |
What is the average crowd size when Collingwood is the away team? | CREATE TABLE table_name_81 (crowd INTEGER, away_team VARCHAR) | SELECT AVG(crowd) FROM table_name_81 WHERE away_team = "collingwood" | ### Context: CREATE TABLE table_name_81 (crowd INTEGER, away_team VARCHAR) ### Question: What is the average crowd size when Collingwood is the away team? ### Answer: SELECT AVG(crowd) FROM table_name_81 WHERE away_team = "collingwood" |
What is the name of the Senator in the O District who assumed office in 2013? | CREATE TABLE table_name_81 (name VARCHAR, assumed_office VARCHAR, district VARCHAR) | SELECT name FROM table_name_81 WHERE assumed_office = 2013 AND district = "o" | ### Context: CREATE TABLE table_name_81 (name VARCHAR, assumed_office VARCHAR, district VARCHAR) ### Question: What is the name of the Senator in the O District who assumed office in 2013? ### Answer: SELECT name FROM table_name_81 WHERE assumed_office = 2013 AND district = "o" |
What is the 1944 result for the U.S. Championships? | CREATE TABLE table_name_52 (tournament VARCHAR) | SELECT 1944 FROM table_name_52 WHERE tournament = "u.s. championships" | ### Context: CREATE TABLE table_name_52 (tournament VARCHAR) ### Question: What is the 1944 result for the U.S. Championships? ### Answer: SELECT 1944 FROM table_name_52 WHERE tournament = "u.s. championships" |
What is the tournament that had a result of A in 1954 and NH in 1942? | CREATE TABLE table_name_30 (tournament VARCHAR) | SELECT tournament FROM table_name_30 WHERE 1954 = "a" AND 1942 = "nh" | ### Context: CREATE TABLE table_name_30 (tournament VARCHAR) ### Question: What is the tournament that had a result of A in 1954 and NH in 1942? ### Answer: SELECT tournament FROM table_name_30 WHERE 1954 = "a" AND 1942 = "nh" |
When was Fitzroy the home team? | CREATE TABLE table_name_94 (date VARCHAR, home_team VARCHAR) | SELECT date FROM table_name_94 WHERE home_team = "fitzroy" | ### Context: CREATE TABLE table_name_94 (date VARCHAR, home_team VARCHAR) ### Question: When was Fitzroy the home team? ### Answer: SELECT date FROM table_name_94 WHERE home_team = "fitzroy" |
Where did Geelong play a home game? | CREATE TABLE table_name_74 (venue VARCHAR, home_team VARCHAR) | SELECT venue FROM table_name_74 WHERE home_team = "geelong" | ### Context: CREATE TABLE table_name_74 (venue VARCHAR, home_team VARCHAR) ### Question: Where did Geelong play a home game? ### Answer: SELECT venue FROM table_name_74 WHERE home_team = "geelong" |
What is the sum of losses for teams with less than 4 games played? | CREATE TABLE table_name_38 (lost INTEGER, played INTEGER) | SELECT SUM(lost) FROM table_name_38 WHERE played < 4 | ### Context: CREATE TABLE table_name_38 (lost INTEGER, played INTEGER) ### Question: What is the sum of losses for teams with less than 4 games played? ### Answer: SELECT SUM(lost) FROM table_name_38 WHERE played < 4 |
What is the rider status for the 1971 netherlands team? | CREATE TABLE table_name_77 (rider_status VARCHAR, team_country VARCHAR, year VARCHAR) | SELECT rider_status FROM table_name_77 WHERE team_country = "netherlands" AND year = 1971 | ### Context: CREATE TABLE table_name_77 (rider_status VARCHAR, team_country VARCHAR, year VARCHAR) ### Question: What is the rider status for the 1971 netherlands team? ### Answer: SELECT rider_status FROM table_name_77 WHERE team_country = "netherlands" AND year = 1971 |
Who was the winner in 1973 with an amateur rider status? | CREATE TABLE table_name_74 (winner VARCHAR, rider_status VARCHAR, year VARCHAR) | SELECT winner FROM table_name_74 WHERE rider_status = "amateur" AND year = 1973 | ### Context: CREATE TABLE table_name_74 (winner VARCHAR, rider_status VARCHAR, year VARCHAR) ### Question: Who was the winner in 1973 with an amateur rider status? ### Answer: SELECT winner FROM table_name_74 WHERE rider_status = "amateur" AND year = 1973 |
What is the latest year when Phil Anderson won? | CREATE TABLE table_name_28 (year INTEGER, winner VARCHAR) | SELECT MAX(year) FROM table_name_28 WHERE winner = "phil anderson" | ### Context: CREATE TABLE table_name_28 (year INTEGER, winner VARCHAR) ### Question: What is the latest year when Phil Anderson won? ### Answer: SELECT MAX(year) FROM table_name_28 WHERE winner = "phil anderson" |
What ream played later than 1958 in the kellogg's tour? | CREATE TABLE table_name_54 (team_country VARCHAR, year VARCHAR, race_name VARCHAR) | SELECT team_country FROM table_name_54 WHERE year > 1958 AND race_name = "kellogg's tour" | ### Context: CREATE TABLE table_name_54 (team_country VARCHAR, year VARCHAR, race_name VARCHAR) ### Question: What ream played later than 1958 in the kellogg's tour? ### Answer: SELECT team_country FROM table_name_54 WHERE year > 1958 AND race_name = "kellogg's tour" |
What is the sum of laps that has a car number of larger than 1, is a ford, and has 155 points? | CREATE TABLE table_name_54 (laps INTEGER, points VARCHAR, car__number VARCHAR, make VARCHAR) | SELECT SUM(laps) FROM table_name_54 WHERE car__number > 1 AND make = "ford" AND points = 155 | ### Context: CREATE TABLE table_name_54 (laps INTEGER, points VARCHAR, car__number VARCHAR, make VARCHAR) ### Question: What is the sum of laps that has a car number of larger than 1, is a ford, and has 155 points? ### Answer: SELECT SUM(laps) FROM table_name_54 WHERE car__number > 1 AND make = "ford" AND points = 155 |
What is the lowest number of laps for kyle petty with under 118 points? | CREATE TABLE table_name_99 (laps INTEGER, points VARCHAR, driver VARCHAR) | SELECT MIN(laps) FROM table_name_99 WHERE points < 118 AND driver = "kyle petty" | ### Context: CREATE TABLE table_name_99 (laps INTEGER, points VARCHAR, driver VARCHAR) ### Question: What is the lowest number of laps for kyle petty with under 118 points? ### Answer: SELECT MIN(laps) FROM table_name_99 WHERE points < 118 AND driver = "kyle petty" |
Who was the away team that played Fitzroy on May 13, 1950 at Brunswick Street Oval. | CREATE TABLE table_name_86 (away_team VARCHAR, venue VARCHAR) | SELECT away_team FROM table_name_86 WHERE venue = "brunswick street oval" | ### Context: CREATE TABLE table_name_86 (away_team VARCHAR, venue VARCHAR) ### Question: Who was the away team that played Fitzroy on May 13, 1950 at Brunswick Street Oval. ### Answer: SELECT away_team FROM table_name_86 WHERE venue = "brunswick street oval" |
What was the lowest crowd size at the Windy Hill venue? | CREATE TABLE table_name_55 (crowd INTEGER, venue VARCHAR) | SELECT MIN(crowd) FROM table_name_55 WHERE venue = "windy hill" | ### Context: CREATE TABLE table_name_55 (crowd INTEGER, venue VARCHAR) ### Question: What was the lowest crowd size at the Windy Hill venue? ### Answer: SELECT MIN(crowd) FROM table_name_55 WHERE venue = "windy hill" |
Which venue's home team is geelong? | CREATE TABLE table_name_33 (venue VARCHAR, home_team VARCHAR) | SELECT venue FROM table_name_33 WHERE home_team = "geelong" | ### Context: CREATE TABLE table_name_33 (venue VARCHAR, home_team VARCHAR) ### Question: Which venue's home team is geelong? ### Answer: SELECT venue FROM table_name_33 WHERE home_team = "geelong" |
How many people in the crowd with north melbourne as an away team? | CREATE TABLE table_name_72 (crowd INTEGER, away_team VARCHAR) | SELECT SUM(crowd) FROM table_name_72 WHERE away_team = "north melbourne" | ### Context: CREATE TABLE table_name_72 (crowd INTEGER, away_team VARCHAR) ### Question: How many people in the crowd with north melbourne as an away team? ### Answer: SELECT SUM(crowd) FROM table_name_72 WHERE away_team = "north melbourne" |
Which team was at Corio Oval on 4 June 1927? | CREATE TABLE table_name_77 (away_team VARCHAR, date VARCHAR, venue VARCHAR) | SELECT away_team FROM table_name_77 WHERE date = "4 june 1927" AND venue = "corio oval" | ### Context: CREATE TABLE table_name_77 (away_team VARCHAR, date VARCHAR, venue VARCHAR) ### Question: Which team was at Corio Oval on 4 June 1927? ### Answer: SELECT away_team FROM table_name_77 WHERE date = "4 june 1927" AND venue = "corio oval" |
What was the home team score for the Richmond away team? | CREATE TABLE table_name_50 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team AS score FROM table_name_50 WHERE away_team = "richmond" | ### Context: CREATE TABLE table_name_50 (home_team VARCHAR, away_team VARCHAR) ### Question: What was the home team score for the Richmond away team? ### Answer: SELECT home_team AS score FROM table_name_50 WHERE away_team = "richmond" |
Which rider had a time of 1:54.26.6? | CREATE TABLE table_name_17 (rider VARCHAR, time VARCHAR) | SELECT rider FROM table_name_17 WHERE time = "1:54.26.6" | ### Context: CREATE TABLE table_name_17 (rider VARCHAR, time VARCHAR) ### Question: Which rider had a time of 1:54.26.6? ### Answer: SELECT rider FROM table_name_17 WHERE time = "1:54.26.6" |
What was the time for Peter Berwick of Team Suzuki? | CREATE TABLE table_name_75 (time VARCHAR, team VARCHAR, rider VARCHAR) | SELECT time FROM table_name_75 WHERE team = "suzuki" AND rider = "peter berwick" | ### Context: CREATE TABLE table_name_75 (time VARCHAR, team VARCHAR, rider VARCHAR) ### Question: What was the time for Peter Berwick of Team Suzuki? ### Answer: SELECT time FROM table_name_75 WHERE team = "suzuki" AND rider = "peter berwick" |
What was the home team's score at the game held at Punt Road Oval? | CREATE TABLE table_name_51 (home_team VARCHAR, venue VARCHAR) | SELECT home_team AS score FROM table_name_51 WHERE venue = "punt road oval" | ### Context: CREATE TABLE table_name_51 (home_team VARCHAR, venue VARCHAR) ### Question: What was the home team's score at the game held at Punt Road Oval? ### Answer: SELECT home_team AS score FROM table_name_51 WHERE venue = "punt road oval" |
What was the home team's score at the game that had a crowd larger than 24,000? | CREATE TABLE table_name_79 (home_team VARCHAR, crowd INTEGER) | SELECT home_team AS score FROM table_name_79 WHERE crowd > 24 OFFSET 000 | ### Context: CREATE TABLE table_name_79 (home_team VARCHAR, crowd INTEGER) ### Question: What was the home team's score at the game that had a crowd larger than 24,000? ### Answer: SELECT home_team AS score FROM table_name_79 WHERE crowd > 24 OFFSET 000 |
What position was for Arizona State? | CREATE TABLE table_name_92 (position VARCHAR, school_country VARCHAR) | SELECT position FROM table_name_92 WHERE school_country = "arizona state" | ### Context: CREATE TABLE table_name_92 (position VARCHAR, school_country VARCHAR) ### Question: What position was for Arizona State? ### Answer: SELECT position FROM table_name_92 WHERE school_country = "arizona state" |
Who was the home team for the game where North Melbourne was the away team? | CREATE TABLE table_name_59 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_name_59 WHERE away_team = "north melbourne" | ### Context: CREATE TABLE table_name_59 (home_team VARCHAR, away_team VARCHAR) ### Question: Who was the home team for the game where North Melbourne was the away team? ### Answer: SELECT home_team FROM table_name_59 WHERE away_team = "north melbourne" |
What was the Candlelight Records Catalog of Candle053tin format? | CREATE TABLE table_name_93 (format VARCHAR, label VARCHAR, catalog VARCHAR) | SELECT format FROM table_name_93 WHERE label = "candlelight records" AND catalog = "candle053tin" | ### Context: CREATE TABLE table_name_93 (format VARCHAR, label VARCHAR, catalog VARCHAR) ### Question: What was the Candlelight Records Catalog of Candle053tin format? ### Answer: SELECT format FROM table_name_93 WHERE label = "candlelight records" AND catalog = "candle053tin" |
What is Candlelight Records format? | CREATE TABLE table_name_98 (format VARCHAR, label VARCHAR) | SELECT format FROM table_name_98 WHERE label = "candlelight records" | ### Context: CREATE TABLE table_name_98 (format VARCHAR, label VARCHAR) ### Question: What is Candlelight Records format? ### Answer: SELECT format FROM table_name_98 WHERE label = "candlelight records" |
What year did Japan form a label? | CREATE TABLE table_name_79 (year VARCHAR, region VARCHAR) | SELECT year FROM table_name_79 WHERE region = "japan" | ### Context: CREATE TABLE table_name_79 (year VARCHAR, region VARCHAR) ### Question: What year did Japan form a label? ### Answer: SELECT year FROM table_name_79 WHERE region = "japan" |
What name is associated with a longer length than 903? | CREATE TABLE table_name_64 (name VARCHAR, length INTEGER) | SELECT name FROM table_name_64 WHERE length > 903 | ### Context: CREATE TABLE table_name_64 (name VARCHAR, length INTEGER) ### Question: What name is associated with a longer length than 903? ### Answer: SELECT name FROM table_name_64 WHERE length > 903 |
What is the sum of all the years that Landon Donovan won the ESPY award? | CREATE TABLE table_name_32 (year VARCHAR, player VARCHAR) | SELECT COUNT(year) FROM table_name_32 WHERE player = "landon donovan" | ### Context: CREATE TABLE table_name_32 (year VARCHAR, player VARCHAR) ### Question: What is the sum of all the years that Landon Donovan won the ESPY award? ### Answer: SELECT COUNT(year) FROM table_name_32 WHERE player = "landon donovan" |
How many uninterrupted ranks does john dingell have? | CREATE TABLE table_name_87 (uninterrupted_rank VARCHAR, name VARCHAR) | SELECT COUNT(uninterrupted_rank) FROM table_name_87 WHERE name = "john dingell" | ### Context: CREATE TABLE table_name_87 (uninterrupted_rank VARCHAR, name VARCHAR) ### Question: How many uninterrupted ranks does john dingell have? ### Answer: SELECT COUNT(uninterrupted_rank) FROM table_name_87 WHERE name = "john dingell" |
Who has a total tenure time and uninterrupted time of 36 years, 0 days, as well as a total tenure rank of 49? | CREATE TABLE table_name_14 (name VARCHAR, total_tenure_rank VARCHAR, total_tenure_time VARCHAR, uninterrupted_time VARCHAR) | SELECT name FROM table_name_14 WHERE total_tenure_time = "36 years, 0 days" AND uninterrupted_time = "36 years, 0 days" AND total_tenure_rank = 49 | ### Context: CREATE TABLE table_name_14 (name VARCHAR, total_tenure_rank VARCHAR, total_tenure_time VARCHAR, uninterrupted_time VARCHAR) ### Question: Who has a total tenure time and uninterrupted time of 36 years, 0 days, as well as a total tenure rank of 49? ### Answer: SELECT name FROM table_name_14 WHERE total_tenu... |
What is the value of match points when the points for is 570? | CREATE TABLE table_name_8 (match_points VARCHAR, points_against VARCHAR) | SELECT match_points FROM table_name_8 WHERE points_against = "570" | ### Context: CREATE TABLE table_name_8 (match_points VARCHAR, points_against VARCHAR) ### Question: What is the value of match points when the points for is 570? ### Answer: SELECT match_points FROM table_name_8 WHERE points_against = "570" |
What is the amount of match points for a club that lost 18 and has 11 bonus points? | CREATE TABLE table_name_6 (match_points VARCHAR, lost VARCHAR, bonus_points VARCHAR) | SELECT match_points FROM table_name_6 WHERE lost = "18" AND bonus_points = "11" | ### Context: CREATE TABLE table_name_6 (match_points VARCHAR, lost VARCHAR, bonus_points VARCHAR) ### Question: What is the amount of match points for a club that lost 18 and has 11 bonus points? ### Answer: SELECT match_points FROM table_name_6 WHERE lost = "18" AND bonus_points = "11" |
What is the diff for a club that has a value of 662 for points for? | CREATE TABLE table_name_46 (diff VARCHAR, points_for VARCHAR) | SELECT diff FROM table_name_46 WHERE points_for = "662" | ### Context: CREATE TABLE table_name_46 (diff VARCHAR, points_for VARCHAR) ### Question: What is the diff for a club that has a value of 662 for points for? ### Answer: SELECT diff FROM table_name_46 WHERE points_for = "662" |
What is the number of games for a club that has a value of 595 for points for? | CREATE TABLE table_name_26 (games VARCHAR, points_for VARCHAR) | SELECT games FROM table_name_26 WHERE points_for = "595" | ### Context: CREATE TABLE table_name_26 (games VARCHAR, points_for VARCHAR) ### Question: What is the number of games for a club that has a value of 595 for points for? ### Answer: SELECT games FROM table_name_26 WHERE points_for = "595" |
What is the number of games for a club that has 34 match points? | CREATE TABLE table_name_39 (games VARCHAR, match_points VARCHAR) | SELECT games FROM table_name_39 WHERE match_points = "34" | ### Context: CREATE TABLE table_name_39 (games VARCHAR, match_points VARCHAR) ### Question: What is the number of games for a club that has 34 match points? ### Answer: SELECT games FROM table_name_39 WHERE match_points = "34" |
How many bonus points did the Colomiers earn? | CREATE TABLE table_name_35 (bonus_points VARCHAR, club VARCHAR) | SELECT bonus_points FROM table_name_35 WHERE club = "colomiers" | ### Context: CREATE TABLE table_name_35 (bonus_points VARCHAR, club VARCHAR) ### Question: How many bonus points did the Colomiers earn? ### Answer: SELECT bonus_points FROM table_name_35 WHERE club = "colomiers" |
What is the venue for the event on 12 November 2005? | CREATE TABLE table_name_13 (venue VARCHAR, date VARCHAR) | SELECT venue FROM table_name_13 WHERE date = "12 november 2005" | ### Context: CREATE TABLE table_name_13 (venue VARCHAR, date VARCHAR) ### Question: What is the venue for the event on 12 November 2005? ### Answer: SELECT venue FROM table_name_13 WHERE date = "12 november 2005" |
What is the competition that occured on 27 July 2004? | CREATE TABLE table_name_98 (competition VARCHAR, date VARCHAR) | SELECT competition FROM table_name_98 WHERE date = "27 july 2004" | ### Context: CREATE TABLE table_name_98 (competition VARCHAR, date VARCHAR) ### Question: What is the competition that occured on 27 July 2004? ### Answer: SELECT competition FROM table_name_98 WHERE date = "27 july 2004" |
What is the venue of the game on 20 November 2002? | CREATE TABLE table_name_33 (venue VARCHAR, date VARCHAR) | SELECT venue FROM table_name_33 WHERE date = "20 november 2002" | ### Context: CREATE TABLE table_name_33 (venue VARCHAR, date VARCHAR) ### Question: What is the venue of the game on 20 November 2002? ### Answer: SELECT venue FROM table_name_33 WHERE date = "20 november 2002" |
What was the score of the game played on 16 August 2006? | CREATE TABLE table_name_32 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_32 WHERE date = "16 august 2006" | ### Context: CREATE TABLE table_name_32 (score VARCHAR, date VARCHAR) ### Question: What was the score of the game played on 16 August 2006? ### Answer: SELECT score FROM table_name_32 WHERE date = "16 august 2006" |
How large was the crowd at Brunswick Street Oval? | CREATE TABLE table_name_35 (crowd VARCHAR, venue VARCHAR) | SELECT crowd FROM table_name_35 WHERE venue = "brunswick street oval" | ### Context: CREATE TABLE table_name_35 (crowd VARCHAR, venue VARCHAR) ### Question: How large was the crowd at Brunswick Street Oval? ### Answer: SELECT crowd FROM table_name_35 WHERE venue = "brunswick street oval" |
How big was the crowd when the away team was Richmond? | CREATE TABLE table_name_4 (crowd VARCHAR, away_team VARCHAR) | SELECT crowd FROM table_name_4 WHERE away_team = "richmond" | ### Context: CREATE TABLE table_name_4 (crowd VARCHAR, away_team VARCHAR) ### Question: How big was the crowd when the away team was Richmond? ### Answer: SELECT crowd FROM table_name_4 WHERE away_team = "richmond" |
What was the largest crowd where the home team was Fitzroy? | CREATE TABLE table_name_19 (crowd INTEGER, home_team VARCHAR) | SELECT MAX(crowd) FROM table_name_19 WHERE home_team = "fitzroy" | ### Context: CREATE TABLE table_name_19 (crowd INTEGER, home_team VARCHAR) ### Question: What was the largest crowd where the home team was Fitzroy? ### Answer: SELECT MAX(crowd) FROM table_name_19 WHERE home_team = "fitzroy" |
What was the venue where Fitzroy played as the home team? | CREATE TABLE table_name_87 (venue VARCHAR, home_team VARCHAR) | SELECT venue FROM table_name_87 WHERE home_team = "fitzroy" | ### Context: CREATE TABLE table_name_87 (venue VARCHAR, home_team VARCHAR) ### Question: What was the venue where Fitzroy played as the home team? ### Answer: SELECT venue FROM table_name_87 WHERE home_team = "fitzroy" |
Who was the away team playing the home team North Melbourne? | CREATE TABLE table_name_88 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_name_88 WHERE home_team = "north melbourne" | ### Context: CREATE TABLE table_name_88 (away_team VARCHAR, home_team VARCHAR) ### Question: Who was the away team playing the home team North Melbourne? ### Answer: SELECT away_team FROM table_name_88 WHERE home_team = "north melbourne" |
Who built Warren Booth's car with the Cosworth DFV V8 engine? | CREATE TABLE table_name_88 (constructor VARCHAR, engine VARCHAR, driver VARCHAR) | SELECT constructor FROM table_name_88 WHERE engine = "cosworth dfv v8" AND driver = "warren booth" | ### Context: CREATE TABLE table_name_88 (constructor VARCHAR, engine VARCHAR, driver VARCHAR) ### Question: Who built Warren Booth's car with the Cosworth DFV V8 engine? ### Answer: SELECT constructor FROM table_name_88 WHERE engine = "cosworth dfv v8" AND driver = "warren booth" |
What engine is used by Colin Bennett Racing with an 811 chassis? | CREATE TABLE table_name_48 (engine VARCHAR, entrant VARCHAR, chassis VARCHAR) | SELECT engine FROM table_name_48 WHERE entrant = "colin bennett racing" AND chassis = "811" | ### Context: CREATE TABLE table_name_48 (engine VARCHAR, entrant VARCHAR, chassis VARCHAR) ### Question: What engine is used by Colin Bennett Racing with an 811 chassis? ### Answer: SELECT engine FROM table_name_48 WHERE entrant = "colin bennett racing" AND chassis = "811" |
What team used the BRM built car? | CREATE TABLE table_name_92 (entrant VARCHAR, constructor VARCHAR) | SELECT entrant FROM table_name_92 WHERE constructor = "brm" | ### Context: CREATE TABLE table_name_92 (entrant VARCHAR, constructor VARCHAR) ### Question: What team used the BRM built car? ### Answer: SELECT entrant FROM table_name_92 WHERE constructor = "brm" |
Who built the Jim Crawford car? | CREATE TABLE table_name_76 (constructor VARCHAR, driver VARCHAR) | SELECT constructor FROM table_name_76 WHERE driver = "jim crawford" | ### Context: CREATE TABLE table_name_76 (constructor VARCHAR, driver VARCHAR) ### Question: Who built the Jim Crawford car? ### Answer: SELECT constructor FROM table_name_76 WHERE driver = "jim crawford" |
What chassis does the shadow built car use? | CREATE TABLE table_name_36 (chassis VARCHAR, constructor VARCHAR) | SELECT chassis FROM table_name_36 WHERE constructor = "shadow" | ### Context: CREATE TABLE table_name_36 (chassis VARCHAR, constructor VARCHAR) ### Question: What chassis does the shadow built car use? ### Answer: SELECT chassis FROM table_name_36 WHERE constructor = "shadow" |
What team uses a Cosworth DFV V8 engine and DN9 Chassis? | CREATE TABLE table_name_68 (entrant VARCHAR, engine VARCHAR, chassis VARCHAR) | SELECT entrant FROM table_name_68 WHERE engine = "cosworth dfv v8" AND chassis = "dn9" | ### Context: CREATE TABLE table_name_68 (entrant VARCHAR, engine VARCHAR, chassis VARCHAR) ### Question: What team uses a Cosworth DFV V8 engine and DN9 Chassis? ### Answer: SELECT entrant FROM table_name_68 WHERE engine = "cosworth dfv v8" AND chassis = "dn9" |
What was Oslo's population in 1960, with a population of 507,467 in 2000? | CREATE TABLE table_name_41 (population__1960_ INTEGER, county VARCHAR, population__2000_ VARCHAR) | SELECT AVG(population__1960_) FROM table_name_41 WHERE county = "oslo" AND population__2000_ > 507 OFFSET 467 | ### Context: CREATE TABLE table_name_41 (population__1960_ INTEGER, county VARCHAR, population__2000_ VARCHAR) ### Question: What was Oslo's population in 1960, with a population of 507,467 in 2000? ### Answer: SELECT AVG(population__1960_) FROM table_name_41 WHERE county = "oslo" AND population__2000_ > 507 OFFSET 467 |
What is the sum of week number(s) had an attendance of 61,985? | CREATE TABLE table_name_95 (week VARCHAR, attendance VARCHAR) | SELECT COUNT(week) FROM table_name_95 WHERE attendance = 61 OFFSET 985 | ### Context: CREATE TABLE table_name_95 (week VARCHAR, attendance VARCHAR) ### Question: What is the sum of week number(s) had an attendance of 61,985? ### Answer: SELECT COUNT(week) FROM table_name_95 WHERE attendance = 61 OFFSET 985 |
What is the home team's score when the venue is princes park? | CREATE TABLE table_name_16 (home_team VARCHAR, venue VARCHAR) | SELECT home_team AS score FROM table_name_16 WHERE venue = "princes park" | ### Context: CREATE TABLE table_name_16 (home_team VARCHAR, venue VARCHAR) ### Question: What is the home team's score when the venue is princes park? ### Answer: SELECT home_team AS score FROM table_name_16 WHERE venue = "princes park" |
What is the away team when north melbourne is at home? | CREATE TABLE table_name_99 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_name_99 WHERE home_team = "north melbourne" | ### Context: CREATE TABLE table_name_99 (away_team VARCHAR, home_team VARCHAR) ### Question: What is the away team when north melbourne is at home? ### Answer: SELECT away_team FROM table_name_99 WHERE home_team = "north melbourne" |
What is the highest average that has 6 dances and a total of over 128? | CREATE TABLE table_name_15 (average INTEGER, number_of_dances VARCHAR, total VARCHAR) | SELECT MAX(average) FROM table_name_15 WHERE number_of_dances = 6 AND total > 128 | ### Context: CREATE TABLE table_name_15 (average INTEGER, number_of_dances VARCHAR, total VARCHAR) ### Question: What is the highest average that has 6 dances and a total of over 128? ### Answer: SELECT MAX(average) FROM table_name_15 WHERE number_of_dances = 6 AND total > 128 |
Which party has a net gain/loss of -2? | CREATE TABLE table_name_19 (party VARCHAR, net_gain_loss VARCHAR) | SELECT party FROM table_name_19 WHERE net_gain_loss = "-2" | ### Context: CREATE TABLE table_name_19 (party VARCHAR, net_gain_loss VARCHAR) ### Question: Which party has a net gain/loss of -2? ### Answer: SELECT party FROM table_name_19 WHERE net_gain_loss = "-2" |
When the Swedish People's Party had a net gain/loss of 0, how many seats did they have? | CREATE TABLE table_name_38 (seats VARCHAR, net_gain_loss VARCHAR, party VARCHAR) | SELECT seats FROM table_name_38 WHERE net_gain_loss = "0" AND party = "swedish people's party" | ### Context: CREATE TABLE table_name_38 (seats VARCHAR, net_gain_loss VARCHAR, party VARCHAR) ### Question: When the Swedish People's Party had a net gain/loss of 0, how many seats did they have? ### Answer: SELECT seats FROM table_name_38 WHERE net_gain_loss = "0" AND party = "swedish people's party" |
When there was a net gain/loss of +34, what was the percentage of seats that party held? | CREATE TABLE table_name_74 (_percentage_of_seats VARCHAR, net_gain_loss VARCHAR) | SELECT _percentage_of_seats FROM table_name_74 WHERE net_gain_loss = "+34" | ### Context: CREATE TABLE table_name_74 (_percentage_of_seats VARCHAR, net_gain_loss VARCHAR) ### Question: When there was a net gain/loss of +34, what was the percentage of seats that party held? ### Answer: SELECT _percentage_of_seats FROM table_name_74 WHERE net_gain_loss = "+34" |
Regarding the seats that casted 8.1% of the vote how many seats were held? | CREATE TABLE table_name_71 (seats VARCHAR, _percentage_of_votes VARCHAR) | SELECT seats FROM table_name_71 WHERE _percentage_of_votes = "8.1" | ### Context: CREATE TABLE table_name_71 (seats VARCHAR, _percentage_of_votes VARCHAR) ### Question: Regarding the seats that casted 8.1% of the vote how many seats were held? ### Answer: SELECT seats FROM table_name_71 WHERE _percentage_of_votes = "8.1" |
How many points does footscray score as the home side? | CREATE TABLE table_name_86 (home_team VARCHAR) | SELECT home_team AS score FROM table_name_86 WHERE home_team = "footscray" | ### Context: CREATE TABLE table_name_86 (home_team VARCHAR) ### Question: How many points does footscray score as the home side? ### Answer: SELECT home_team AS score FROM table_name_86 WHERE home_team = "footscray" |
What is the home team's score when richmond is away? | CREATE TABLE table_name_87 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team AS score FROM table_name_87 WHERE away_team = "richmond" | ### Context: CREATE TABLE table_name_87 (home_team VARCHAR, away_team VARCHAR) ### Question: What is the home team's score when richmond is away? ### Answer: SELECT home_team AS score FROM table_name_87 WHERE away_team = "richmond" |
What player played on 04/05/1999 with a conv of 0? | CREATE TABLE table_name_36 (player VARCHAR, conv VARCHAR, date VARCHAR) | SELECT player FROM table_name_36 WHERE conv = "0" AND date = "04/05/1999" | ### Context: CREATE TABLE table_name_36 (player VARCHAR, conv VARCHAR, date VARCHAR) ### Question: What player played on 04/05/1999 with a conv of 0? ### Answer: SELECT player FROM table_name_36 WHERE conv = "0" AND date = "04/05/1999" |
What date did Josh Taumalolo play at Nuku'alofa? | CREATE TABLE table_name_49 (date VARCHAR, venue VARCHAR, player VARCHAR) | SELECT date FROM table_name_49 WHERE venue = "nuku'alofa" AND player = "josh taumalolo" | ### Context: CREATE TABLE table_name_49 (date VARCHAR, venue VARCHAR, player VARCHAR) ### Question: What date did Josh Taumalolo play at Nuku'alofa? ### Answer: SELECT date FROM table_name_49 WHERE venue = "nuku'alofa" AND player = "josh taumalolo" |
What is the home team score when the away team is St Kilda? | CREATE TABLE table_name_37 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team AS score FROM table_name_37 WHERE away_team = "st kilda" | ### Context: CREATE TABLE table_name_37 (home_team VARCHAR, away_team VARCHAR) ### Question: What is the home team score when the away team is St Kilda? ### Answer: SELECT home_team AS score FROM table_name_37 WHERE away_team = "st kilda" |
What is the home team score when the away team is Melbourne? | CREATE TABLE table_name_95 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team AS score FROM table_name_95 WHERE away_team = "melbourne" | ### Context: CREATE TABLE table_name_95 (home_team VARCHAR, away_team VARCHAR) ### Question: What is the home team score when the away team is Melbourne? ### Answer: SELECT home_team AS score FROM table_name_95 WHERE away_team = "melbourne" |
What is the home team for punt road oval? | CREATE TABLE table_name_38 (home_team VARCHAR, venue VARCHAR) | SELECT home_team FROM table_name_38 WHERE venue = "punt road oval" | ### Context: CREATE TABLE table_name_38 (home_team VARCHAR, venue VARCHAR) ### Question: What is the home team for punt road oval? ### Answer: SELECT home_team FROM table_name_38 WHERE venue = "punt road oval" |
Which country has a Youth (15-24) Literacy Rate Total of 100% and has an Adult Women Literacy rate of 92%? | CREATE TABLE table_name_60 (country VARCHAR, youth__15_24__literacy_rate_total VARCHAR, adult_women VARCHAR) | SELECT country FROM table_name_60 WHERE youth__15_24__literacy_rate_total = "100%" AND adult_women = "92%" | ### Context: CREATE TABLE table_name_60 (country VARCHAR, youth__15_24__literacy_rate_total VARCHAR, adult_women VARCHAR) ### Question: Which country has a Youth (15-24) Literacy Rate Total of 100% and has an Adult Women Literacy rate of 92%? ### Answer: SELECT country FROM table_name_60 WHERE youth__15_24__literacy_ra... |
Which country has its most recent year as being 2005 and has an Adult Men literacy rate of 96%? | CREATE TABLE table_name_62 (country VARCHAR, year__most_recent_ VARCHAR, adult_men VARCHAR) | SELECT country FROM table_name_62 WHERE year__most_recent_ = 2005 AND adult_men = "96%" | ### Context: CREATE TABLE table_name_62 (country VARCHAR, year__most_recent_ VARCHAR, adult_men VARCHAR) ### Question: Which country has its most recent year as being 2005 and has an Adult Men literacy rate of 96%? ### Answer: SELECT country FROM table_name_62 WHERE year__most_recent_ = 2005 AND adult_men = "96%" |
What country has a Youth (15-24) Literacy Rate Total of 99%, and a Youth Men of 98%? | CREATE TABLE table_name_50 (country VARCHAR, youth__15_24__literacy_rate_total VARCHAR, youth_men VARCHAR) | SELECT country FROM table_name_50 WHERE youth__15_24__literacy_rate_total = "99%" AND youth_men = "98%" | ### Context: CREATE TABLE table_name_50 (country VARCHAR, youth__15_24__literacy_rate_total VARCHAR, youth_men VARCHAR) ### Question: What country has a Youth (15-24) Literacy Rate Total of 99%, and a Youth Men of 98%? ### Answer: SELECT country FROM table_name_50 WHERE youth__15_24__literacy_rate_total = "99%" AND you... |
Which public college has a nickname of The Grenadiers? | CREATE TABLE table_name_30 (institution VARCHAR, type VARCHAR, nickname VARCHAR) | SELECT institution FROM table_name_30 WHERE type = "public" AND nickname = "grenadiers" | ### Context: CREATE TABLE table_name_30 (institution VARCHAR, type VARCHAR, nickname VARCHAR) ### Question: Which public college has a nickname of The Grenadiers? ### Answer: SELECT institution FROM table_name_30 WHERE type = "public" AND nickname = "grenadiers" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.