text stringlengths 114 1.06k |
|---|
### question: What are the numbers of steals associated with players having exactly 3 blocks? ### answer: SELECT steals FROM table_24913533_4 WHERE blocks = 3 ### context: CREATE TABLE table_24913533_4 (steals VARCHAR, blocks VARCHAR) |
### question: How many numbers of rebounds are associated with exactly 18 points? ### answer: SELECT COUNT(rebounds) FROM table_24913533_4 WHERE points = 18 ### context: CREATE TABLE table_24913533_4 (rebounds VARCHAR, points VARCHAR) |
### question: What is the maximum number of assists for players named Anastasia Kostaki? ### answer: SELECT MAX(assists) FROM table_24913533_4 WHERE player = "Anastasia Kostaki" ### context: CREATE TABLE table_24913533_4 (assists INTEGER, player VARCHAR) |
### question: What is Tiffani Johnson's maximum steals? ### answer: SELECT MAX(steals) FROM table_24912693_4 WHERE player = "Tiffani Johnson" ### context: CREATE TABLE table_24912693_4 (steals INTEGER, player VARCHAR) |
### question: Which player has 17 blocks? ### answer: SELECT player FROM table_24912693_4 WHERE blocks = 17 ### context: CREATE TABLE table_24912693_4 (player VARCHAR, blocks VARCHAR) |
### question: How many field goals does the player with 84 rebounds have? ### answer: SELECT MIN(field_goals) FROM table_24912693_4 WHERE rebounds = 84 ### context: CREATE TABLE table_24912693_4 (field_goals INTEGER, rebounds VARCHAR) |
### question: How many blocks does the player who played 893 minutes have? ### answer: SELECT blocks FROM table_24912693_4 WHERE minutes = 893 ### context: CREATE TABLE table_24912693_4 (blocks VARCHAR, minutes VARCHAR) |
### question: How many points does the player with 2 steals have? ### answer: SELECT points FROM table_24912693_4 WHERE steals = 2 ### context: CREATE TABLE table_24912693_4 (points VARCHAR, steals VARCHAR) |
### question: Name the most number ### answer: SELECT MAX(number) FROM table_24924576_2 ### context: CREATE TABLE table_24924576_2 (number INTEGER) |
### question: Name the titles for tko 11/12 ### answer: SELECT titles FROM table_24924576_2 WHERE result = "TKO 11/12" ### context: CREATE TABLE table_24924576_2 (titles VARCHAR, result VARCHAR) |
### question: Where was the game played when the result/margin was won by 70? ### answer: SELECT venue FROM table_24919137_2 WHERE result_margin = "WON by 70" ### context: CREATE TABLE table_24919137_2 (venue VARCHAR, result_margin VARCHAR) |
### question: What is the result/margin when fox sports 1 broadcast the game played at mcg? ### answer: SELECT result_margin FROM table_24919137_2 WHERE broadcaster = "Fox Sports 1" AND venue = "MCG" ### context: CREATE TABLE table_24919137_2 (result_margin VARCHAR, broadcaster VARCHAR, venue VARCHAR) |
### question: Which network broadcast the game when the Western Bulldogs played melbourne? ### answer: SELECT broadcaster FROM table_24919137_2 WHERE opposition = "Melbourne" ### context: CREATE TABLE table_24919137_2 (broadcaster VARCHAR, opposition VARCHAR) |
### question: Where was the game played when the score was 14.16 (100)-12.12 (84)? ### answer: SELECT venue FROM table_24919137_2 WHERE score = "14.16 (100)-12.12 (84)" ### context: CREATE TABLE table_24919137_2 (venue VARCHAR, score VARCHAR) |
### question: What was the ladder position when the score was 15.9 (99)–14.6 (90)? ### answer: SELECT ladder_position FROM table_24919137_2 WHERE score = "15.9 (99)–14.6 (90)" ### context: CREATE TABLE table_24919137_2 (ladder_position VARCHAR, score VARCHAR) |
### question: On what date was the game played when the Western Bulldogs were in 8th ladder position and hawthorn was the opposing team? ### answer: SELECT date FROM table_24919137_2 WHERE ladder_position = "8th" AND opposition = "Hawthorn" ### context: CREATE TABLE table_24919137_2 (date VARCHAR, ladder_position VARCH... |
### question: What school is nicknamed the panthers? ### answer: SELECT school FROM table_24935743_2 WHERE nickname = "Panthers" ### context: CREATE TABLE table_24935743_2 (school VARCHAR, nickname VARCHAR) |
### question: What school is in Jeromesville? ### answer: SELECT location FROM table_24935743_2 WHERE school = "Jeromesville" ### context: CREATE TABLE table_24935743_2 (location VARCHAR, school VARCHAR) |
### question: What was the previous school of the ft7in (m) tall player? ### answer: SELECT previous_school FROM table_24925945_3 WHERE height = "ft7in (m)" ### context: CREATE TABLE table_24925945_3 (previous_school VARCHAR, height VARCHAR) |
### question: What was the previous school of #22? ### answer: SELECT previous_school FROM table_24925945_3 WHERE _number = 22 ### context: CREATE TABLE table_24925945_3 (previous_school VARCHAR, _number VARCHAR) |
### question: What is the title of the episode with production code 3x5402? ### answer: SELECT title FROM table_24938621_2 WHERE production_code = "3X5402" ### context: CREATE TABLE table_24938621_2 (title VARCHAR, production_code VARCHAR) |
### question: What is the title of the episode with production code 3x5405? ### answer: SELECT title FROM table_24938621_2 WHERE production_code = "3X5405" ### context: CREATE TABLE table_24938621_2 (title VARCHAR, production_code VARCHAR) |
### question: Who as the home team for game on 5 october 2011? ### answer: SELECT home_team FROM table_24949975_1 WHERE date = "5 October 2011" ### context: CREATE TABLE table_24949975_1 (home_team VARCHAR, date VARCHAR) |
### question: What was the stadium for the home team of shamrock rovers and result of 3–0? ### answer: SELECT stadium FROM table_24949975_1 WHERE home_team = "Shamrock Rovers" AND result = "3–0" ### context: CREATE TABLE table_24949975_1 (stadium VARCHAR, home_team VARCHAR, result VARCHAR) |
### question: What was the away team when the result was 2–1 and home team was the bohemians? ### answer: SELECT away_team FROM table_24949975_1 WHERE result = "2–1" AND home_team = "Bohemians" ### context: CREATE TABLE table_24949975_1 (away_team VARCHAR, result VARCHAR, home_team VARCHAR) |
### question: Who was the home team for the 2013 season and the result was 0–0? ### answer: SELECT home_team FROM table_24949975_1 WHERE season = "2013" AND result = "0–0" ### context: CREATE TABLE table_24949975_1 (home_team VARCHAR, season VARCHAR, result VARCHAR) |
### question: What is the date for the game at the tallaght stadium and result was 0–1? ### answer: SELECT date FROM table_24949975_1 WHERE stadium = "Tallaght stadium" AND result = "0–1" ### context: CREATE TABLE table_24949975_1 (date VARCHAR, stadium VARCHAR, result VARCHAR) |
### question: What opponents played Waldstadion in a game? ### answer: SELECT opponent FROM table_24951872_2 WHERE game_site = "Waldstadion" ### context: CREATE TABLE table_24951872_2 (opponent VARCHAR, game_site VARCHAR) |
### question: What was the maximum week that had attendance of 10738? ### answer: SELECT MAX(week) FROM table_24951872_2 WHERE attendance = 10738 ### context: CREATE TABLE table_24951872_2 (week INTEGER, attendance VARCHAR) |
### question: What is the production code of the episode written by Cathryn Humphris? ### answer: SELECT production_code FROM table_24938621_3 WHERE written_by = "Cathryn Humphris" ### context: CREATE TABLE table_24938621_3 (production_code VARCHAR, written_by VARCHAR) |
### question: What is the production code of the episode that had 5.43 million viewers? ### answer: SELECT production_code FROM table_24938621_3 WHERE us_viewers__million_ = "5.43" ### context: CREATE TABLE table_24938621_3 (production_code VARCHAR, us_viewers__million_ VARCHAR) |
### question: What was the title of the episode directed by Jesse Warn? ### answer: SELECT production_code FROM table_24938621_3 WHERE directed_by = "Jesse Warn" ### context: CREATE TABLE table_24938621_3 (production_code VARCHAR, directed_by VARCHAR) |
### question: What episode number was written by Gregg Hurwitz? ### answer: SELECT no FROM table_24938621_3 WHERE written_by = "Gregg Hurwitz" ### context: CREATE TABLE table_24938621_3 (no VARCHAR, written_by VARCHAR) |
### question: If the dry density is 800, what is the drying shrinkage %? ### answer: SELECT drying_shrinkage___percentage_ FROM table_24969173_1 WHERE dry_density__kg_m3_ = 800 ### context: CREATE TABLE table_24969173_1 (drying_shrinkage___percentage_ VARCHAR, dry_density__kg_m3_ VARCHAR) |
### question: What number in the series was episode 7 in the season? ### answer: SELECT series__number FROM table_24961421_1 WHERE season__number = 7 ### context: CREATE TABLE table_24961421_1 (series__number VARCHAR, season__number VARCHAR) |
### question: Who wrote the episode that had 12.15 million viewers? ### answer: SELECT written_by FROM table_24961421_1 WHERE us_viewers__millions_ = "12.15" ### context: CREATE TABLE table_24961421_1 (written_by VARCHAR, us_viewers__millions_ VARCHAR) |
### question: What number in the season was the episode with 12.23 million viewers? ### answer: SELECT season__number FROM table_24961421_1 WHERE us_viewers__millions_ = "12.23" ### context: CREATE TABLE table_24961421_1 (season__number VARCHAR, us_viewers__millions_ VARCHAR) |
### question: What is the date of the game at Olympic Stadium? ### answer: SELECT date FROM table_24989925_2 WHERE game_site = "Olympic Stadium" ### context: CREATE TABLE table_24989925_2 (date VARCHAR, game_site VARCHAR) |
### question: How many weeks total are there? ### answer: SELECT MAX(week) FROM table_24989925_2 ### context: CREATE TABLE table_24989925_2 (week INTEGER) |
### question: What was the team's record when they played at Rheinenergiestadion? ### answer: SELECT team_record FROM table_24989925_2 WHERE game_site = "RheinEnergieStadion" ### context: CREATE TABLE table_24989925_2 (team_record VARCHAR, game_site VARCHAR) |
### question: What is the lowest overall number of 09-10 oi 2nd? ### answer: SELECT MIN(09 AS _10_oi_2nd) FROM table_24990183_6 ### context: CREATE TABLE table_24990183_6 (Id VARCHAR) |
### question: What was the maximum 09-10 i/o best? ### answer: SELECT MAX(09 AS _10_i_o_best) FROM table_24990183_4 ### context: CREATE TABLE table_24990183_4 (Id VARCHAR) |
### question: If the rank is 17, what are the names? ### answer: SELECT name FROM table_24990183_7 WHERE rank = 17 ### context: CREATE TABLE table_24990183_7 (name VARCHAR, rank VARCHAR) |
### question: If the WS points is 947, what is the 08-09 gp/jgp 2nd ? ### answer: SELECT 08 AS _09_gp_jgp_2nd FROM table_24990183_7 WHERE ws_points = 947 ### context: CREATE TABLE table_24990183_7 (ws_points VARCHAR) |
### question: How many points did he have when he has in the 34th position? ### answer: SELECT points FROM table_24998088_1 WHERE position = "34th" ### context: CREATE TABLE table_24998088_1 (points VARCHAR, position VARCHAR) |
### question: How many wins were listed when he had 112 points? ### answer: SELECT wins FROM table_24998088_1 WHERE points = "112" ### context: CREATE TABLE table_24998088_1 (wins VARCHAR, points VARCHAR) |
### question: In what series did he have the 7th position? ### answer: SELECT series FROM table_24998088_1 WHERE position = "7th" ### context: CREATE TABLE table_24998088_1 (series VARCHAR, position VARCHAR) |
### question: what were his points when he was in 8th position? ### answer: SELECT points FROM table_24998088_1 WHERE position = "8th" ### context: CREATE TABLE table_24998088_1 (points VARCHAR, position VARCHAR) |
### question: What was the vote when the air date is 4 october 1997? ### answer: SELECT vote FROM table_25016824_2 WHERE air_date = "4 October 1997" ### context: CREATE TABLE table_25016824_2 (vote VARCHAR, air_date VARCHAR) |
### question: Who was eliminated when immunity went to kent (jürgen)? ### answer: SELECT eliminated FROM table_25016824_2 WHERE immunity = "Kent (Jürgen)" ### context: CREATE TABLE table_25016824_2 (eliminated VARCHAR, immunity VARCHAR) |
### question: Who was eliminated when the vote was 8-1? ### answer: SELECT eliminated FROM table_25016824_2 WHERE vote = "8-1" ### context: CREATE TABLE table_25016824_2 (eliminated VARCHAR, vote VARCHAR) |
### question: How many entries are there for vote when the air date was 15 november 1997? ### answer: SELECT COUNT(vote) FROM table_25016824_2 WHERE air_date = "15 November 1997" ### context: CREATE TABLE table_25016824_2 (vote VARCHAR, air_date VARCHAR) |
### question: What was the reward when immunity went to martin and finish is 13th voted out 8th jury member day 46? ### answer: SELECT reward FROM table_25016824_2 WHERE immunity = "Martin" AND finish = "13th voted Out 8th Jury Member Day 46" ### context: CREATE TABLE table_25016824_2 (reward VARCHAR, immunity VARCHA... |
### question: How many values for Macedonian correspond to Slovianski value of Veliki? ### answer: SELECT COUNT(macedonian) FROM table_25008327_8 WHERE slovianski = "veliki" ### context: CREATE TABLE table_25008327_8 (macedonian VARCHAR, slovianski VARCHAR) |
### question: What area all values for Slovak when value for Ukranian is пес, собака? ### answer: SELECT slovak FROM table_25008327_8 WHERE ukrainian = "пес, собака" ### context: CREATE TABLE table_25008327_8 (slovak VARCHAR, ukrainian VARCHAR) |
### question: What is every value for Croatian when value for English is dog? ### answer: SELECT croatian FROM table_25008327_8 WHERE english = "dog" ### context: CREATE TABLE table_25008327_8 (croatian VARCHAR, english VARCHAR) |
### question: What is every value for Polish when Balarusian is ноч? ### answer: SELECT polish FROM table_25008327_8 WHERE belarusian = "ноч" ### context: CREATE TABLE table_25008327_8 (polish VARCHAR, belarusian VARCHAR) |
### question: What is every value for Russian when value for Bulgarian is пес, куче? ### answer: SELECT russian FROM table_25008327_8 WHERE bulgarian = "пес, куче" ### context: CREATE TABLE table_25008327_8 (russian VARCHAR, bulgarian VARCHAR) |
### question: What is every value for словјански if polish is książka? ### answer: SELECT словјански FROM table_25008327_8 WHERE polish = "książka" ### context: CREATE TABLE table_25008327_8 (словјански VARCHAR, polish VARCHAR) |
### question: Name the position for christopher smith ### answer: SELECT position FROM table_25017530_5 WHERE player = "Christopher Smith" ### context: CREATE TABLE table_25017530_5 (position VARCHAR, player VARCHAR) |
### question: Name the college for nate binder ### answer: SELECT college FROM table_25017530_5 WHERE player = "Nate Binder" ### context: CREATE TABLE table_25017530_5 (college VARCHAR, player VARCHAR) |
### question: Name the least pick number for steven turner ### answer: SELECT MIN(pick__number) FROM table_25017530_5 WHERE player = "Steven Turner" ### context: CREATE TABLE table_25017530_5 (pick__number INTEGER, player VARCHAR) |
### question: Name the cfl team for steven turner ### answer: SELECT cfl_team FROM table_25017530_5 WHERE player = "Steven Turner" ### context: CREATE TABLE table_25017530_5 (cfl_team VARCHAR, player VARCHAR) |
### question: Name the cfl team for lb position ### answer: SELECT cfl_team FROM table_25017530_6 WHERE position = "LB" ### context: CREATE TABLE table_25017530_6 (cfl_team VARCHAR, position VARCHAR) |
### question: Name the cfl team for saskatchewan ### answer: SELECT cfl_team FROM table_25017530_6 WHERE college = "Saskatchewan" ### context: CREATE TABLE table_25017530_6 (cfl_team VARCHAR, college VARCHAR) |
### question: Name the position for michael warner ### answer: SELECT position FROM table_25017530_6 WHERE player = "Michael Warner" ### context: CREATE TABLE table_25017530_6 (position VARCHAR, player VARCHAR) |
### question: How many episodes were numbered 5? ### answer: SELECT COUNT(production_count) FROM table_2501754_2 WHERE episode__number = 5 ### context: CREATE TABLE table_2501754_2 (production_count VARCHAR, episode__number VARCHAR) |
### question: What are the original air date(s) for episodes with production code ipea343l? ### answer: SELECT original_airdate FROM table_2501754_2 WHERE prod_code = "IPEA343L" ### context: CREATE TABLE table_2501754_2 (original_airdate VARCHAR, prod_code VARCHAR) |
### question: What are the original air date(s) for episodes with production code ipea345a? ### answer: SELECT original_airdate FROM table_2501754_2 WHERE prod_code = "IPEA345A" ### context: CREATE TABLE table_2501754_2 (original_airdate VARCHAR, prod_code VARCHAR) |
### question: What are the original air date(s) for episodes with 8.63 million viewers? ### answer: SELECT original_airdate FROM table_2501754_2 WHERE viewing_figures_millions = "8.63" ### context: CREATE TABLE table_2501754_2 (original_airdate VARCHAR, viewing_figures_millions VARCHAR) |
### question: What is the power of the Type R? ### answer: SELECT power FROM table_250230_2 WHERE model = "Type R" ### context: CREATE TABLE table_250230_2 (power VARCHAR, model VARCHAR) |
### question: What kind of brakes for the model type rb 4at with 16x8.0jj (front) 16x8.0jj (rear) wheels and 225/50r16 92v(front) 225/50r16 92v(rear) tyres? ### answer: SELECT brakes FROM table_250230_2 WHERE wheels = "16x8.0JJ (front) 16x8.0JJ (rear)" AND tyres = "225/50R16 92V(front) 225/50R16 92V(rear)" AND model = ... |
### question: What brakes for the 4-speed automatic gearbox? ### answer: SELECT brakes FROM table_250230_2 WHERE gearbox = "4-speed automatic" ### context: CREATE TABLE table_250230_2 (brakes VARCHAR, gearbox VARCHAR) |
### question: What is the power for the Spirit R (Type B)? ### answer: SELECT power FROM table_250230_2 WHERE model = "Spirit R (Type B)" ### context: CREATE TABLE table_250230_2 (power VARCHAR, model VARCHAR) |
### question: What is the gearbox when the torque is torque? ### answer: SELECT gearbox FROM table_250230_2 WHERE "torque" = "torque" ### context: CREATE TABLE table_250230_2 (gearbox VARCHAR) |
### question: Name the first elected for alabama 3 ### answer: SELECT COUNT(first_elected) FROM table_25030512_4 WHERE district = "Alabama 3" ### context: CREATE TABLE table_25030512_4 (first_elected VARCHAR, district VARCHAR) |
### question: Name the party for spencer bachus ### answer: SELECT party FROM table_25030512_4 WHERE incumbent = "Spencer Bachus" ### context: CREATE TABLE table_25030512_4 (party VARCHAR, incumbent VARCHAR) |
### question: Name the district for mike rogers ### answer: SELECT district FROM table_25030512_4 WHERE incumbent = "Mike Rogers" ### context: CREATE TABLE table_25030512_4 (district VARCHAR, incumbent VARCHAR) |
### question: Name the district for spencer bachus ### answer: SELECT district FROM table_25030512_4 WHERE incumbent = "Spencer Bachus" ### context: CREATE TABLE table_25030512_4 (district VARCHAR, incumbent VARCHAR) |
### question: In what district was keith ellison the incumbent? ### answer: SELECT district FROM table_25030512_26 WHERE incumbent = "Keith Ellison" ### context: CREATE TABLE table_25030512_26 (district VARCHAR, incumbent VARCHAR) |
### question: List the kilo watt hoours per day for moline. ### answer: SELECT day_power___w__ FROM table_25034983_2 WHERE city = "Moline" ### context: CREATE TABLE table_25034983_2 (day_power___w__ VARCHAR, city VARCHAR) |
### question: In which year did the voice of muscatine show start? ### answer: SELECT start FROM table_25034983_2 WHERE nickname = "Voice of Muscatine" ### context: CREATE TABLE table_25034983_2 (start VARCHAR, nickname VARCHAR) |
### question: In what year was cumulus founded? ### answer: SELECT MIN(start) FROM table_25034983_2 WHERE owner = "Cumulus" ### context: CREATE TABLE table_25034983_2 (start INTEGER, owner VARCHAR) |
### question: Does the city of moline have stereo? ### answer: SELECT stereo FROM table_25034983_2 WHERE city = "Moline" ### context: CREATE TABLE table_25034983_2 (stereo VARCHAR, city VARCHAR) |
### question: what is the company with the parent company wrightbus? ### answer: SELECT company FROM table_250309_1 WHERE parent_company = "Wrightbus" ### context: CREATE TABLE table_250309_1 (company VARCHAR, parent_company VARCHAR) |
### question: what is the name ofhte company where the plant is in burnaston? ### answer: SELECT company FROM table_250309_1 WHERE plant = "Burnaston" ### context: CREATE TABLE table_250309_1 (company VARCHAR, plant VARCHAR) |
### question: what models are produced where the plant is scarborough? ### answer: SELECT models_produced FROM table_250309_1 WHERE plant = "Scarborough" ### context: CREATE TABLE table_250309_1 (models_produced VARCHAR, plant VARCHAR) |
### question: how many models produced where the plant is castle bromwich? ### answer: SELECT COUNT(models_produced) FROM table_250309_1 WHERE plant = "Castle Bromwich" ### context: CREATE TABLE table_250309_1 (models_produced VARCHAR, plant VARCHAR) |
### question: what is the production where the parent company is ariel? ### answer: SELECT production__latest_figures_ FROM table_250309_1 WHERE parent_company = "Ariel" ### context: CREATE TABLE table_250309_1 (production__latest_figures_ VARCHAR, parent_company VARCHAR) |
### question: What kind of chassis on the angie's list sponsored car? ### answer: SELECT chassis FROM table_2503102_2 WHERE primary_sponsor = "Angie's List" ### context: CREATE TABLE table_2503102_2 (chassis VARCHAR, primary_sponsor VARCHAR) |
### question: What team owns the car owned by chip ganassi? ### answer: SELECT team FROM table_2503102_2 WHERE listed_owner_s_ = "Chip Ganassi" ### context: CREATE TABLE table_2503102_2 (team VARCHAR, listed_owner_s_ VARCHAR) |
### question: What chassis is on the car repped by team rahal letterman lanigan racing? ### answer: SELECT chassis FROM table_2503102_2 WHERE team = "Rahal Letterman Lanigan Racing" ### context: CREATE TABLE table_2503102_2 (chassis VARCHAR, team VARCHAR) |
### question: Who drives the abc supply sponsored cor? ### answer: SELECT driver_s_ FROM table_2503102_2 WHERE primary_sponsor = "ABC Supply" ### context: CREATE TABLE table_2503102_2 (driver_s_ VARCHAR, primary_sponsor VARCHAR) |
### question: Name the number of district for tom marino ### answer: SELECT COUNT(district) FROM table_25030512_41 WHERE incumbent = "Tom Marino" ### context: CREATE TABLE table_25030512_41 (district VARCHAR, incumbent VARCHAR) |
### question: Name the district for 1994 ### answer: SELECT district FROM table_25030512_41 WHERE first_elected = 1994 ### context: CREATE TABLE table_25030512_41 (district VARCHAR, first_elected VARCHAR) |
### question: Name the party for pennsylvania 10 ### answer: SELECT party FROM table_25030512_41 WHERE district = "Pennsylvania 10" ### context: CREATE TABLE table_25030512_41 (party VARCHAR, district VARCHAR) |
### question: Name the result for glenn thompson ### answer: SELECT result FROM table_25030512_41 WHERE incumbent = "Glenn Thompson" ### context: CREATE TABLE table_25030512_41 (result VARCHAR, incumbent VARCHAR) |
### question: Name the number of district for bill shuster ### answer: SELECT COUNT(district) FROM table_25030512_41 WHERE incumbent = "Bill Shuster" ### context: CREATE TABLE table_25030512_41 (district VARCHAR, incumbent VARCHAR) |
### question: List the total play time for 11 starts. ### answer: SELECT MAX(minutes) FROM table_25038931_1 WHERE starts = 11 ### context: CREATE TABLE table_25038931_1 (minutes INTEGER, starts VARCHAR) |
### question: In what region is the enrollment ratio in primary 94.40? ### answer: SELECT region FROM table_25042332_22 WHERE primary__6_13_years_ = "94.40" ### context: CREATE TABLE table_25042332_22 (region VARCHAR, primary__6_13_years_ VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.