question
stringlengths
12
243
answer
stringlengths
18
557
context
stringlengths
27
489
How many years was Reasons to be Pretty nominated for best play?
SELECT COUNT(year) FROM table_name_83 WHERE category = "best play"
CREATE TABLE table_name_83 (year VARCHAR, category VARCHAR)
What was the highest rank of an area with a population density larger than 5.7 and a 2006–2011 percentage growth of 5.7%?
SELECT MAX(rank) FROM table_name_45 WHERE population_density___km_2__ > 5.7 AND _percentage_growth__2006_11_ = "5.7%"
CREATE TABLE table_name_45 (rank INTEGER, population_density___km_2__ VARCHAR, _percentage_growth__2006_11_ VARCHAR)
What is the Malayalam word for punarvasu ಪುನರ್ವಸು in Kannada?
SELECT malayalam_മലയാളം FROM table_1408397_3 WHERE kannada_ಕನ್ನಡ = "Punarvasu ಪುನರ್ವಸು"
CREATE TABLE table_1408397_3 (malayalam_മലയാളം VARCHAR, kannada_ಕನ್ನಡ VARCHAR)
What is the time of the 100m freestyle event?
SELECT time FROM table_name_54 WHERE event = "100m freestyle"
CREATE TABLE table_name_54 (time VARCHAR, event VARCHAR)
What is the theme with dani as the winner?
SELECT theme FROM table_name_96 WHERE winner = "dani"
CREATE TABLE table_name_96 (theme VARCHAR, winner VARCHAR)
When included ram (mib) is the model what is the sonnet?
SELECT sonnet FROM table_3002894_4 WHERE model = "Included RAM (MiB)"
CREATE TABLE table_3002894_4 (sonnet VARCHAR, model VARCHAR)
Name the away team score for carlton
SELECT away_team AS score FROM table_16388439_3 WHERE home_team = "Carlton"
CREATE TABLE table_16388439_3 (away_team VARCHAR, home_team VARCHAR)
What day was the complete 2nd series: volume one released?
SELECT date_released FROM table_17798548_4 WHERE season = "The Complete 2nd Series: Volume One"
CREATE TABLE table_17798548_4 (date_released VARCHAR, season VARCHAR)
Who was the entrant for Gary Brabham?
SELECT entrant FROM table_name_5 WHERE driver = "gary brabham"
CREATE TABLE table_name_5 (entrant VARCHAR, driver VARCHAR)
What's Doug Borden's position?
SELECT position FROM table_23619005_3 WHERE player = "Doug Borden"
CREATE TABLE table_23619005_3 (position VARCHAR, player VARCHAR)
What is the all-time rank associated with a rank less than 9 and a debut in 1994?
SELECT -time AS rank FROM table_name_55 WHERE rank < 9 AND debut_year = 1994
CREATE TABLE table_name_55 (time VARCHAR, rank VARCHAR, debut_year VARCHAR)
What school did the player that is 6-6 go to?
SELECT school FROM table_name_69 WHERE height = "6-6"
CREATE TABLE table_name_69 (school VARCHAR, height VARCHAR)
What college has an overall less than 243, and tony green as the name?
SELECT college FROM table_name_70 WHERE overall < 243 AND name = "tony green"
CREATE TABLE table_name_70 (college VARCHAR, overall VARCHAR, name VARCHAR)
If Safari is 3.76%, what is the other Mozilla amount?
SELECT other_mozilla FROM table_1876262_10 WHERE safari = "3.76%"
CREATE TABLE table_1876262_10 (other_mozilla VARCHAR, safari VARCHAR)
What Date has a Score in the final of 3–6, 2–6, 4–6?
SELECT date FROM table_name_4 WHERE score_in_the_final = "3–6, 2–6, 4–6"
CREATE TABLE table_name_4 (date VARCHAR, score_in_the_final VARCHAR)
What is the area for the province having Hangul of 경기도?
SELECT area FROM table_name_60 WHERE hangul_chosongul = "경기도"
CREATE TABLE table_name_60 (area VARCHAR, hangul_chosongul VARCHAR)
How many skaters have a Rank in FS of 3, and a Rank in SP larger than 4?
SELECT COUNT(final_rank) FROM table_name_37 WHERE rank_in_fs = 3 AND rank_in_sp > 4
CREATE TABLE table_name_37 (final_rank VARCHAR, rank_in_fs VARCHAR, rank_in_sp VARCHAR)
What is the largest Attendance with a Loss of darling (0–1)?
SELECT MAX(attendance) FROM table_name_35 WHERE loss = "darling (0–1)"
CREATE TABLE table_name_35 (attendance INTEGER, loss VARCHAR)
Which 1st prize ($) has a Winner of scott simpson (7)?
SELECT SUM(1 AS st_prize___) AS $__ FROM table_name_21 WHERE winner = "scott simpson (7)"
CREATE TABLE table_name_21 (winner VARCHAR)
How many C-95 aircrafts originating in Brazil are currently in service?
SELECT in_service FROM table_name_12 WHERE origin = "brazil" AND versions = "c-95"
CREATE TABLE table_name_12 (in_service VARCHAR, origin VARCHAR, versions VARCHAR)
What is the number of tries for when the try bonus is 0?
SELECT tries_for FROM table_name_16 WHERE try_bonus = "0"
CREATE TABLE table_name_16 (tries_for VARCHAR, try_bonus VARCHAR)
How many flights have a velocity larger than 200?
SELECT COUNT(*) FROM flight WHERE velocity > 200
CREATE TABLE flight (velocity INTEGER)
Show the price ranges of hotels with 5 star ratings.
SELECT price_range FROM HOTELS WHERE star_rating_code = "5"
CREATE TABLE HOTELS (price_range VARCHAR, star_rating_code VARCHAR)
Which Tournament has a Winner and score of goran ivanišević 6–4, 6–2, 7–6(2)?
SELECT tournament FROM table_name_33 WHERE winner_and_score = "goran ivanišević 6–4, 6–2, 7–6(2)"
CREATE TABLE table_name_33 (tournament VARCHAR, winner_and_score VARCHAR)
What was the result of the election when someone was first elected in 1960?
SELECT result FROM table_1341640_14 WHERE first_elected = 1960
CREATE TABLE table_1341640_14 (result VARCHAR, first_elected VARCHAR)
Find the total ranking points for each player and their first name.
SELECT SUM(ranking_points), T1.first_name FROM players AS T1 JOIN rankings AS T2 ON T1.player_id = T2.player_id GROUP BY T1.first_name
CREATE TABLE players (first_name VARCHAR, player_id VARCHAR); CREATE TABLE rankings (player_id VARCHAR)
What is the most recent year where the average start is 8.5?
SELECT MAX(year) FROM table_2190919_1 WHERE avg_start = "8.5"
CREATE TABLE table_2190919_1 (year INTEGER, avg_start VARCHAR)
In how many different years was the team nicknamed Comets founded?
SELECT COUNT(founded) FROM table_28243691_2 WHERE team_nickname = "Comets"
CREATE TABLE table_28243691_2 (founded VARCHAR, team_nickname VARCHAR)
What is the id of the most recent order?
SELECT order_id FROM orders ORDER BY date_order_placed DESC LIMIT 1
CREATE TABLE orders (order_id VARCHAR, date_order_placed VARCHAR)
what is the division southwest when division south was kožuf and division east was osogovo
SELECT division_southwest FROM table_17881033_1 WHERE division_south = "Kožuf" AND division_east = "Osogovo"
CREATE TABLE table_17881033_1 (division_southwest VARCHAR, division_south VARCHAR, division_east VARCHAR)
what's the economics score with justice being 90.8
SELECT economics FROM table_145439_1 WHERE justice = "90.8"
CREATE TABLE table_145439_1 (economics VARCHAR, justice VARCHAR)
What airport is in Toronto?
SELECT airport FROM table_name_87 WHERE city = "toronto"
CREATE TABLE table_name_87 (airport VARCHAR, city VARCHAR)
What is the scientific pitch when the Helmholtz pitch is D?
SELECT scientific_pitch FROM table_name_33 WHERE helmholtz_pitch = "d"
CREATE TABLE table_name_33 (scientific_pitch VARCHAR, helmholtz_pitch VARCHAR)
What Score has an Opponent of @ Blue Jays with a Date of June 7?
SELECT score FROM table_name_16 WHERE opponent = "@ blue jays" AND date = "june 7"
CREATE TABLE table_name_16 (score VARCHAR, opponent VARCHAR, date VARCHAR)
What is the Score with an Opponent that is amanda brown brenda remilton?
SELECT score FROM table_name_45 WHERE opponents = "amanda brown brenda remilton"
CREATE TABLE table_name_45 (score VARCHAR, opponents VARCHAR)
What is the name of the replacement manager for the Bolton Wanderers?
SELECT replaced_by FROM table_name_2 WHERE team = "bolton wanderers"
CREATE TABLE table_name_2 (replaced_by VARCHAR, team VARCHAR)
What is the batting style of the person who has a right arm medium pace bowling style and a birth date of 10 February 1910 (aged 29)?
SELECT batting_style FROM table_name_75 WHERE bowling_style = "right arm medium pace" AND birth_date = "10 february 1910 (aged 29)"
CREATE TABLE table_name_75 (batting_style VARCHAR, bowling_style VARCHAR, birth_date VARCHAR)
What is the sum of Played when the drawn is less than 2 and against is more than 29?
SELECT SUM(played) FROM table_name_35 WHERE drawn < 2 AND against > 29
CREATE TABLE table_name_35 (played INTEGER, drawn VARCHAR, against VARCHAR)
Who is the home team in the game where South Melbourne was the away team?
SELECT home_team AS score FROM table_name_20 WHERE away_team = "south melbourne"
CREATE TABLE table_name_20 (home_team VARCHAR, away_team VARCHAR)
What is the total number of top-25s for the major that has 11 top-10s?
SELECT COUNT(top_25) FROM table_name_95 WHERE top_10 = 11
CREATE TABLE table_name_95 (top_25 VARCHAR, top_10 VARCHAR)
Which Pos has a Team of circle bar racing, and a Car # smaller than 14?
SELECT MAX(pos) FROM table_name_64 WHERE team = "circle bar racing" AND car__number < 14
CREATE TABLE table_name_64 (pos INTEGER, team VARCHAR, car__number VARCHAR)
What were the highest points for less than 78 laps and on grid 5?
SELECT MAX(points) FROM table_name_86 WHERE grid = 5 AND laps < 78
CREATE TABLE table_name_86 (points INTEGER, grid VARCHAR, laps VARCHAR)
Name the country for lusail national stadium
SELECT country FROM table_28281704_1 WHERE stadium = "Lusail National stadium"
CREATE TABLE table_28281704_1 (country VARCHAR, stadium VARCHAR)
What opening date has a capacity of 100?
SELECT opening_date FROM table_name_53 WHERE capacity = 100
CREATE TABLE table_name_53 (opening_date VARCHAR, capacity VARCHAR)
What is the engine configuration & notes 0-100km/h with an engine type with b5252 fs?
SELECT engine_configuration_ & _notes_0_100km_h FROM table_name_49 WHERE engine_type = "b5252 fs"
CREATE TABLE table_name_49 (engine_configuration_ VARCHAR, _notes_0_100km_h VARCHAR, engine_type VARCHAR)
Who is the winner when the st kilda score is 13.10.88?
SELECT winner FROM table_28211103_1 WHERE st_kilda_score = "13.10.88"
CREATE TABLE table_28211103_1 (winner VARCHAR, st_kilda_score VARCHAR)
What is the fire control for the sporter target
SELECT fire_control FROM table_12834315_2 WHERE name = "Sporter Target"
CREATE TABLE table_12834315_2 (fire_control VARCHAR, name VARCHAR)
What was the score of the game played on September 9?
SELECT score FROM table_name_5 WHERE date = "september 9"
CREATE TABLE table_name_5 (score VARCHAR, date VARCHAR)
What is the estimated function % when the measurement is 8/8?
SELECT estimated_function__percentage FROM table_name_43 WHERE measurement = "8/8"
CREATE TABLE table_name_43 (estimated_function__percentage VARCHAR, measurement VARCHAR)
Which Season has a Club of real madrid, and a Rank smaller than 6, and less than 121 goals?
SELECT season FROM table_name_7 WHERE club = "real madrid" AND rank < 6 AND goals < 121
CREATE TABLE table_name_7 (season VARCHAR, goals VARCHAR, club VARCHAR, rank VARCHAR)
What are all approximate sales for the author Laura Ingalls Wilder?
SELECT approximate_sales FROM table_2512935_8 WHERE author = "Laura Ingalls Wilder"
CREATE TABLE table_2512935_8 (approximate_sales VARCHAR, author VARCHAR)
In what week was the Result L 35-10?
SELECT MIN(week) FROM table_name_76 WHERE result = "l 35-10"
CREATE TABLE table_name_76 (week INTEGER, result VARCHAR)
What's the approximate number of HUs when there are more than 2 digits, and 6 levels?
SELECT COUNT(number_of_hus__approximate_) FROM table_name_66 WHERE digits > 2 AND level = 6
CREATE TABLE table_name_66 (number_of_hus__approximate_ VARCHAR, digits VARCHAR, level VARCHAR)
What is the average date in January that the Rangers played against Chicago Black Hawks?
SELECT AVG(january) FROM table_name_92 WHERE opponent = "chicago black hawks"
CREATE TABLE table_name_92 (january INTEGER, opponent VARCHAR)
Who is the sitting Representative In the New York 10 polling area race?
SELECT incumbent FROM table_1342256_32 WHERE district = "New York 10"
CREATE TABLE table_1342256_32 (incumbent VARCHAR, district VARCHAR)
What is the local/network with an Ad frequency of 15 minutes?
SELECT local_networked FROM table_name_1 WHERE ad_freq = "15 minutes"
CREATE TABLE table_name_1 (local_networked VARCHAR, ad_freq VARCHAR)
When the value of "since beginning of big 12" is synonymous with its' category, what are the in Ames values?
SELECT in_ames FROM table_10429820_13 WHERE "since_beginning_of_big_12" = "since_beginning_of_big_12"
CREATE TABLE table_10429820_13 (in_ames VARCHAR)
Name the equipment for bike number 6
SELECT equipment FROM table_16941304_4 WHERE bike_no = 6
CREATE TABLE table_16941304_4 (equipment VARCHAR, bike_no VARCHAR)
How many titles/sources have a developer of Clover Studio?
SELECT COUNT(title_and_source) FROM table_26538035_1 WHERE developer = "Clover Studio"
CREATE TABLE table_26538035_1 (title_and_source VARCHAR, developer VARCHAR)
How many values of free float for the BSE code of 4EH?
SELECT COUNT(free_float) FROM table_20667854_1 WHERE bse_code = "4EH"
CREATE TABLE table_20667854_1 (free_float VARCHAR, bse_code VARCHAR)
In what Year is the Location of the Festival Koror, Palau?
SELECT SUM(year) FROM table_name_9 WHERE location = "koror, palau"
CREATE TABLE table_name_9 (year INTEGER, location VARCHAR)
Which player is from the United States, and played for the Bowling Green Falcons (CCHA) as their College/Junior/Club Team (League)?
SELECT player FROM table_name_38 WHERE nationality = "united states" AND college_junior_club_team__league_ = "bowling green falcons (ccha)"
CREATE TABLE table_name_38 (player VARCHAR, nationality VARCHAR, college_junior_club_team__league_ VARCHAR)
What is the least number of silver medals won
SELECT MIN(silver) FROM table_22355_50
CREATE TABLE table_22355_50 (silver INTEGER)
who is the person that is part of the belgian vw club that works with frédéric miclotte
SELECT driver FROM table_28046929_2 WHERE entrant = "Belgian VW Club" AND co_driver = "Frédéric Miclotte"
CREATE TABLE table_28046929_2 (driver VARCHAR, entrant VARCHAR, co_driver VARCHAR)
How many years of kindergarten is provided in Ticino?
SELECT years_of_kindergarten AS provided FROM table_1831309_1 WHERE canton = "Ticino"
CREATE TABLE table_1831309_1 (years_of_kindergarten VARCHAR, canton VARCHAR)
What is the High rebounds with a Series with 4–2?
SELECT high_rebounds FROM table_name_13 WHERE series = "4–2"
CREATE TABLE table_name_13 (high_rebounds VARCHAR, series VARCHAR)
What is the Name of the SS5 Stage?
SELECT name FROM table_name_90 WHERE stage = "ss5"
CREATE TABLE table_name_90 (name VARCHAR, stage VARCHAR)
What is the lowest Polish Cup, when Position is "Midfielder", when Player is "Miroslav Radović", and when Ekstraklasa is less than 1?
SELECT MIN(polish_cup) FROM table_name_47 WHERE position = "midfielder" AND player = "miroslav radović" AND ekstraklasa < 1
CREATE TABLE table_name_47 (polish_cup INTEGER, ekstraklasa VARCHAR, position VARCHAR, player VARCHAR)
Which stage has a mountains classification of Mariano Piccoli, a points classification of Mario Cipollini and was won by Laudelino Cubino?
SELECT stage FROM table_name_93 WHERE mountains_classification = "mariano piccoli" AND points_classification = "mario cipollini" AND winner = "laudelino cubino"
CREATE TABLE table_name_93 (stage VARCHAR, winner VARCHAR, mountains_classification VARCHAR, points_classification VARCHAR)
How many teams that played won 0 games?
SELECT played FROM table_20760802_1 WHERE won = "0"
CREATE TABLE table_20760802_1 (played VARCHAR, won VARCHAR)
Name the starting from thiruvezhukkurrirukkai
SELECT MIN(starting_from) FROM table_1852650_1 WHERE name_of_the_prabandham = "Thiruvezhukkurrirukkai"
CREATE TABLE table_1852650_1 (starting_from INTEGER, name_of_the_prabandham VARCHAR)
What was the result of the election in which Walter E. Rogers was the incumbent?
SELECT result FROM table_1341897_45 WHERE incumbent = "Walter E. Rogers"
CREATE TABLE table_1341897_45 (result VARCHAR, incumbent VARCHAR)
Show ids, customer ids, card type codes, card numbers for all cards.
SELECT card_id, customer_id, card_type_code, card_number FROM Customers_cards
CREATE TABLE Customers_cards (card_id VARCHAR, customer_id VARCHAR, card_type_code VARCHAR, card_number VARCHAR)
What was the position (P) for Clapham?
SELECT p FROM table_12608427_8 WHERE name = "Clapham"
CREATE TABLE table_12608427_8 (p VARCHAR, name VARCHAR)
What is the lowest number of field goals for a player with 3 touchdowns?
SELECT MIN(field_goals) FROM table_name_84 WHERE touchdowns = 3
CREATE TABLE table_name_84 (field_goals INTEGER, touchdowns VARCHAR)
What was the score when the visitor was pittsburgh?
SELECT score FROM table_name_51 WHERE visitor = "pittsburgh"
CREATE TABLE table_name_51 (score VARCHAR, visitor VARCHAR)
What is the background of the celebrity who had the result 13 the celebrity apprentice (2008-03-27)?
SELECT background FROM table_12286195_1 WHERE result = "13 The celebrity Apprentice (2008-03-27)"
CREATE TABLE table_12286195_1 (background VARCHAR, result VARCHAR)
What is the lowest rank of Gatwick Airport?
SELECT MIN(rank) FROM table_18118221_1 WHERE railway_station = "Gatwick Airport"
CREATE TABLE table_18118221_1 (rank INTEGER, railway_station VARCHAR)
What is Tommy Bolt's place?
SELECT place FROM table_name_10 WHERE player = "tommy bolt"
CREATE TABLE table_name_10 (place VARCHAR, player VARCHAR)
Name the disposition for date built is march 1909
SELECT disposition FROM table_1748444_1 WHERE date_built = "March 1909"
CREATE TABLE table_1748444_1 (disposition VARCHAR, date_built VARCHAR)
What is the lowest founded that has bizerte athletic f.c. as the club?
SELECT MIN(founded) FROM table_name_42 WHERE club = "bizerte athletic f.c."
CREATE TABLE table_name_42 (founded INTEGER, club VARCHAR)
What population (in thousands) is Lublin's seat?
SELECT population, _in_thousands, __1905__ FROM table_11614581_3 WHERE seat = "Lublin"
CREATE TABLE table_11614581_3 (population VARCHAR, _in_thousands VARCHAR, __1905__ VARCHAR, seat VARCHAR)
Which player is a tight end with a round higher than 3?
SELECT name FROM table_name_4 WHERE position = "tight end" AND round > 3
CREATE TABLE table_name_4 (name VARCHAR, position VARCHAR, round VARCHAR)
What was the away score when the home team was Melbourne?
SELECT away_team AS score FROM table_name_84 WHERE home_team = "melbourne"
CREATE TABLE table_name_84 (away_team VARCHAR, home_team VARCHAR)
What Gold has the Year of 1994?
SELECT gold FROM table_name_68 WHERE year = 1994
CREATE TABLE table_name_68 (gold VARCHAR, year VARCHAR)
What Game had a Result of 105-95?
SELECT game FROM table_name_86 WHERE result = "105-95"
CREATE TABLE table_name_86 (game VARCHAR, result VARCHAR)
How many laps does jean-christophe boullion have with a time/retired of +1 lap?
SELECT laps FROM table_name_67 WHERE time_retired = "+1 lap" AND driver = "jean-christophe boullion"
CREATE TABLE table_name_67 (laps VARCHAR, time_retired VARCHAR, driver VARCHAR)
What is the highest 2000 value that has a 2010 value of 82 and a 2005 value less than 74?
SELECT MAX(2000) FROM table_name_51 WHERE 2010 = 82 AND 2005 < 74
CREATE TABLE table_name_51 (Id VARCHAR)
What is the result of the game on May 14 with Philadelphia as the road team?
SELECT result FROM table_name_48 WHERE road_team = "philadelphia" AND date = "may 14"
CREATE TABLE table_name_48 (result VARCHAR, road_team VARCHAR, date VARCHAR)
Find the id and last name of the teacher that has the most detentions with detention type code "AFTER"?
SELECT T1.teacher_id, T2.last_name FROM Detention AS T1 JOIN Teachers AS T2 ON T1.teacher_id = T2.teacher_id WHERE T1.detention_type_code = "AFTER" GROUP BY T1.teacher_id ORDER BY COUNT(*) DESC LIMIT 1
CREATE TABLE Detention (teacher_id VARCHAR, detention_type_code VARCHAR); CREATE TABLE Teachers (last_name VARCHAR, teacher_id VARCHAR)
What was the average of wins with manager George Scherger smaller than 3 and losses smaller than 1?
SELECT AVG(wins) FROM table_name_91 WHERE games < 3 AND manager = "george scherger" AND losses < 1
CREATE TABLE table_name_91 (wins INTEGER, losses VARCHAR, games VARCHAR, manager VARCHAR)
What was the score on 10 November 2006?
SELECT score FROM table_name_79 WHERE date = "10 november 2006"
CREATE TABLE table_name_79 (score VARCHAR, date VARCHAR)
Name the total number of cars for panther racing and grid of 9
SELECT COUNT(car_no) FROM table_17304308_1 WHERE team = "Panther Racing" AND grid = 9
CREATE TABLE table_17304308_1 (car_no VARCHAR, team VARCHAR, grid VARCHAR)
What is the population of the area with a median family income of $71,278?
SELECT COUNT(population) FROM table_name_59 WHERE median_family_income = "$71,278"
CREATE TABLE table_name_59 (population VARCHAR, median_family_income VARCHAR)
who are the writers of the episode whose production code(s) is 225560?
SELECT written_by FROM table_27714573_1 WHERE production_code_s_ = 225560
CREATE TABLE table_27714573_1 (written_by VARCHAR, production_code_s_ VARCHAR)
What is the highest Goals For, when Team is "Cheadle Town", and when Drawn is greater than 7?
SELECT MAX(goals_for) FROM table_name_2 WHERE team = "cheadle town" AND drawn > 7
CREATE TABLE table_name_2 (goals_for INTEGER, team VARCHAR, drawn VARCHAR)
What Site had an Attendance of 45,000?
SELECT site FROM table_name_20 WHERE attendance = "45,000"
CREATE TABLE table_name_20 (site VARCHAR, attendance VARCHAR)
In how many episodes were Vanessa Feltz and Lee Mack the team for Sean?
SELECT COUNT(episode) FROM table_23292220_6 WHERE seans_team = "Vanessa Feltz and Lee Mack"
CREATE TABLE table_23292220_6 (episode VARCHAR, seans_team VARCHAR)
Who ran under the Democratic ticket when Edward R. Dudley ran under the Liberal ticket?
SELECT democratic_ticket FROM table_name_68 WHERE liberal_ticket = "edward r. dudley"
CREATE TABLE table_name_68 (democratic_ticket VARCHAR, liberal_ticket VARCHAR)
How many seats in 2006 has a % 1997 rating of 38.9?
SELECT COUNT(seats_2006) FROM table_21132404_1 WHERE _percentage_1997 = "38.9"
CREATE TABLE table_21132404_1 (seats_2006 VARCHAR, _percentage_1997 VARCHAR)

Dataset diviso in train e test (dataset originale -> "b-mc2/sql-create-context")

Downloads last month
0
Edit dataset card