question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
|
---|---|---|
For what Japanese title is there less than 11 episodes and the Romaji title is Regatta~Kimi to Ita Eien~? | CREATE TABLE table_name_89 (japanese_title VARCHAR, episodes VARCHAR, romaji_title VARCHAR) | SELECT japanese_title FROM table_name_89 WHERE episodes < 11 AND romaji_title = "regatta~kimi to ita eien~" |
what is the most episodes when the average ratings is 18.8%? | CREATE TABLE table_name_52 (episodes INTEGER, average_ratings VARCHAR) | SELECT MAX(episodes) FROM table_name_52 WHERE average_ratings = "18.8%" |
How many episodes when the tv station is ntv and the japanese title is たったひとつの恋? | CREATE TABLE table_name_47 (episodes VARCHAR, tv_station VARCHAR, japanese_title VARCHAR) | SELECT episodes FROM table_name_47 WHERE tv_station = "ntv" AND japanese_title = "たったひとつの恋" |
what is the tv station when the romaji title is kazoku~tsuma no fuzai・otto no sonzai~? | CREATE TABLE table_name_17 (tv_station VARCHAR, romaji_title VARCHAR) | SELECT tv_station FROM table_name_17 WHERE romaji_title = "kazoku~tsuma no fuzai・otto no sonzai~" |
what is the tv station when the average ratings is 19.5%? | CREATE TABLE table_name_36 (tv_station VARCHAR, average_ratings VARCHAR) | SELECT tv_station FROM table_name_36 WHERE average_ratings = "19.5%" |
Of all the schools that left before 2003, what is the average year joined? | CREATE TABLE table_name_22 (year_joined INTEGER, year_left INTEGER) | SELECT AVG(year_joined) FROM table_name_22 WHERE year_left < 2003 |
What year did the Ingots, who left after 2007, join? | CREATE TABLE table_name_48 (year_joined VARCHAR, mascot VARCHAR, year_left VARCHAR) | SELECT COUNT(year_joined) FROM table_name_48 WHERE mascot = "ingots" AND year_left > 2007 |
What is the original Release date of the Track written by Dallas Frazier? | CREATE TABLE table_name_27 (original_release VARCHAR, writer_s_ VARCHAR) | SELECT original_release FROM table_name_27 WHERE writer_s_ = "dallas frazier" |
What is the Original Artis of the Track with a Length of 2:38? | CREATE TABLE table_name_64 (original_artist VARCHAR, length VARCHAR) | SELECT original_artist FROM table_name_64 WHERE length = "2:38" |
What Song has a Length of 2:50? | CREATE TABLE table_name_7 (song_title VARCHAR, length VARCHAR) | SELECT song_title FROM table_name_7 WHERE length = "2:50" |
What's the title when the genre is drama and network of KBS2 happening before 2011? | CREATE TABLE table_name_4 (title VARCHAR, genre VARCHAR, year VARCHAR, network VARCHAR) | SELECT title FROM table_name_4 WHERE year < 2011 AND network = "kbs2" AND genre = "drama" |
What's the title when the genre is drama with a network of KBS2 happening in 2011? | CREATE TABLE table_name_31 (title VARCHAR, year VARCHAR, genre VARCHAR, network VARCHAR) | SELECT title FROM table_name_31 WHERE genre = "drama" AND network = "kbs2" AND year = 2011 |
What's the network in 2011? | CREATE TABLE table_name_25 (network VARCHAR, year VARCHAR) | SELECT network FROM table_name_25 WHERE year = 2011 |
What's the Hangul/Japanese that happened before 2014 having a role of Baek Seung-Jo? | CREATE TABLE table_name_55 (hangul___japanese VARCHAR, year VARCHAR, role VARCHAR) | SELECT hangul___japanese FROM table_name_55 WHERE year < 2014 AND role = "baek seung-jo" |
What's the Hangul/Japanese of Boys Over Flowers that's drama? | CREATE TABLE table_name_80 (hangul___japanese VARCHAR, genre VARCHAR, title VARCHAR) | SELECT hangul___japanese FROM table_name_80 WHERE genre = "drama" AND title = "boys over flowers" |
What is the IHSAA class in monon? | CREATE TABLE table_name_56 (ihsaa_class VARCHAR, location VARCHAR) | SELECT ihsaa_class FROM table_name_56 WHERE location = "monon" |
What is the IHSAA class with 395 in enrollment? | CREATE TABLE table_name_69 (ihsaa_class VARCHAR, enrollment VARCHAR) | SELECT ihsaa_class FROM table_name_69 WHERE enrollment = 395 |
What school has rebels as their mascot? | CREATE TABLE table_name_8 (school VARCHAR, mascot VARCHAR) | SELECT school FROM table_name_8 WHERE mascot = "rebels" |
What is the total enrollment of the aa IHSAA class? | CREATE TABLE table_name_61 (enrollment VARCHAR, ihsaa_class VARCHAR) | SELECT COUNT(enrollment) FROM table_name_61 WHERE ihsaa_class = "aa" |
What is the lowest enrollment at the pioneer school? | CREATE TABLE table_name_39 (enrollment INTEGER, school VARCHAR) | SELECT MIN(enrollment) FROM table_name_39 WHERE school = "pioneer" |
What is the average enrollment of the IHSAA A class in wolcott? | CREATE TABLE table_name_34 (enrollment INTEGER, ihsaa_class VARCHAR, location VARCHAR) | SELECT AVG(enrollment) FROM table_name_34 WHERE ihsaa_class = "a" AND location = "wolcott" |
What is the Shirt No for Henry Bell Cisnero whose height is less than 190? | CREATE TABLE table_name_24 (shirt_no INTEGER, height VARCHAR, player VARCHAR) | SELECT MAX(shirt_no) FROM table_name_24 WHERE height < 190 AND player = "henry bell cisnero" |
What is the Shirt No for the person whose height is 188? | CREATE TABLE table_name_9 (shirt_no INTEGER, height VARCHAR) | SELECT SUM(shirt_no) FROM table_name_9 WHERE height = 188 |
What is the height of the person whose position is Libero? | CREATE TABLE table_name_15 (height INTEGER, position VARCHAR) | SELECT MAX(height) FROM table_name_15 WHERE position = "libero" |
What is the total for the person with free of 47.667, and technical less than 47.417? | CREATE TABLE table_name_69 (total INTEGER, free VARCHAR, technical VARCHAR) | SELECT SUM(total) FROM table_name_69 WHERE free = 47.667 AND technical < 47.417 |
What is the technical number for Jiang Tingting & Jiang Wenwen, and the total was more than 96.334? | CREATE TABLE table_name_77 (technical INTEGER, athlete VARCHAR, total VARCHAR) | SELECT MAX(technical) FROM table_name_77 WHERE athlete = "jiang tingting & jiang wenwen" AND total > 96.334 |
What is the free of Apolline Dreyfuss & Lila Meesseman-Bakir, when the total was larger than 90.333? | CREATE TABLE table_name_87 (free INTEGER, athlete VARCHAR, total VARCHAR) | SELECT MIN(free) FROM table_name_87 WHERE athlete = "apolline dreyfuss & lila meesseman-bakir" AND total > 90.333 |
What is the average number of games drawn among teams that played over 14 games? | CREATE TABLE table_name_53 (drawn INTEGER, played INTEGER) | SELECT AVG(drawn) FROM table_name_53 WHERE played > 14 |
What is the total number of points combined from the teams that played over 14 games? | CREATE TABLE table_name_52 (points VARCHAR, played INTEGER) | SELECT COUNT(points) FROM table_name_52 WHERE played > 14 |
How many points did the ESC Riverrats Geretsried, who lost more than 3 games, score? | CREATE TABLE table_name_17 (points INTEGER, lost VARCHAR, name VARCHAR) | SELECT SUM(points) FROM table_name_17 WHERE lost > 3 AND name = "esc riverrats geretsried" |
What is the average number of games drawn among the teams that lost over 13 games? | CREATE TABLE table_name_37 (drawn INTEGER, lost INTEGER) | SELECT AVG(drawn) FROM table_name_37 WHERE lost > 13 |
What is the date of vacancy when the manner of departure is sacked and the team is nejapa? | CREATE TABLE table_name_45 (date_of_vacancy VARCHAR, manner_of_departure VARCHAR, team VARCHAR) | SELECT date_of_vacancy FROM table_name_45 WHERE manner_of_departure = "sacked" AND team = "nejapa" |
what is the date of vacancy when the date of appointment is 1 january 2009? | CREATE TABLE table_name_54 (date_of_vacancy VARCHAR, date_of_appointment VARCHAR) | SELECT date_of_vacancy FROM table_name_54 WHERE date_of_appointment = "1 january 2009" |
what is the date of vacancy when the position in table is 10th and the team is balboa? | CREATE TABLE table_name_70 (date_of_vacancy VARCHAR, position_in_table VARCHAR, team VARCHAR) | SELECT date_of_vacancy FROM table_name_70 WHERE position_in_table = "10th" AND team = "balboa" |
Who replaced when the position in table is 5th? | CREATE TABLE table_name_58 (replaced_by VARCHAR, position_in_table VARCHAR) | SELECT replaced_by FROM table_name_58 WHERE position_in_table = "5th" |
Who is the outgoing manager when they were replaced by pablo centrone? | CREATE TABLE table_name_16 (outgoing_manager VARCHAR, replaced_by VARCHAR) | SELECT outgoing_manager FROM table_name_16 WHERE replaced_by = "pablo centrone" |
what is the date of vacancy when the team is firpo and replaced by is oscar benitez? | CREATE TABLE table_name_2 (date_of_vacancy VARCHAR, team VARCHAR, replaced_by VARCHAR) | SELECT date_of_vacancy FROM table_name_2 WHERE team = "firpo" AND replaced_by = "oscar benitez" |
Which country was ranked 8 and noted as qs? | CREATE TABLE table_name_15 (country VARCHAR, notes VARCHAR, rank VARCHAR) | SELECT country FROM table_name_15 WHERE notes = "qs" AND rank = 8 |
What are the notes for the contestants that were ranked #1? | CREATE TABLE table_name_80 (notes VARCHAR, rank VARCHAR) | SELECT notes FROM table_name_80 WHERE rank = 1 |
Who did the Hawks play on 12/21/1973? | CREATE TABLE table_name_52 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_52 WHERE date = "12/21/1973" |
What rank does Tricia Flores have? | CREATE TABLE table_name_22 (rank VARCHAR, name VARCHAR) | SELECT rank FROM table_name_22 WHERE name = "tricia flores" |
Who is in group B and has a mark of 6.33? | CREATE TABLE table_name_10 (name VARCHAR, group VARCHAR, mark VARCHAR) | SELECT name FROM table_name_10 WHERE group = "b" AND mark = "6.33" |
What is the mark for Grenada in group A? | CREATE TABLE table_name_73 (mark VARCHAR, group VARCHAR, nationality VARCHAR) | SELECT mark FROM table_name_73 WHERE group = "a" AND nationality = "grenada" |
Who has a mark of 6.17 in group B? | CREATE TABLE table_name_40 (name VARCHAR, group VARCHAR, mark VARCHAR) | SELECT name FROM table_name_40 WHERE group = "b" AND mark = "6.17" |
What rank does Tatyana Lebedeva have? | CREATE TABLE table_name_7 (rank VARCHAR, name VARCHAR) | SELECT rank FROM table_name_7 WHERE name = "tatyana lebedeva" |
What rank has a mark of NM and is from India? | CREATE TABLE table_name_85 (rank VARCHAR, mark VARCHAR, nationality VARCHAR) | SELECT rank FROM table_name_85 WHERE mark = "nm" AND nationality = "india" |
What is the sum of totals for ranks under 3 with tallies of 2-5? | CREATE TABLE table_name_94 (total INTEGER, rank VARCHAR, tally VARCHAR) | SELECT SUM(total) FROM table_name_94 WHERE rank < 3 AND tally = "2-5" |
Which player had a rank of 8 and tally of 1-5? | CREATE TABLE table_name_56 (player VARCHAR, rank VARCHAR, tally VARCHAR) | SELECT player FROM table_name_56 WHERE rank = 8 AND tally = "1-5" |
What is the sum of the numbers in series written by sam meikle, which have 21 numbers in the season? | CREATE TABLE table_name_5 (no_in_series INTEGER, written_by VARCHAR, no_in_season VARCHAR) | SELECT SUM(no_in_series) FROM table_name_5 WHERE written_by = "sam meikle" AND no_in_season = 21 |
What was the score for the game played in Alexander Memorial Coliseum when the record was 0-1? | CREATE TABLE table_name_32 (score VARCHAR, location_attendance VARCHAR, record VARCHAR) | SELECT score FROM table_name_32 WHERE location_attendance = "alexander memorial coliseum" AND record = "0-1" |
When was the game played that was at the Seattle Center Coliseum? | CREATE TABLE table_name_54 (date VARCHAR, location_attendance VARCHAR) | SELECT date FROM table_name_54 WHERE location_attendance = "seattle center coliseum" |
What is the least game that was played in Alexander Memorial Coliseum on October 16? | CREATE TABLE table_name_98 (game INTEGER, location_attendance VARCHAR, date VARCHAR) | SELECT MIN(game) FROM table_name_98 WHERE location_attendance = "alexander memorial coliseum" AND date = "october 16" |
What average game was played on October 16? | CREATE TABLE table_name_87 (game INTEGER, date VARCHAR) | SELECT AVG(game) FROM table_name_87 WHERE date = "october 16" |
On what day was game 2 played? | CREATE TABLE table_name_56 (date VARCHAR, game VARCHAR) | SELECT date FROM table_name_56 WHERE game = 2 |
What is the average tourism receipts in millions of US dollars in 2011 with less than 1.141 million of 2011 tourist arrivals and more than 1,449 tourism receipts in 2011 US dollars per arrival? | CREATE TABLE table_name_41 (tourism_receipts__2011___millions_of_us INTEGER, tourist_arrivals__2011___millions_ VARCHAR, tourism_receipts__2011___us$_per_arrival_ VARCHAR) | SELECT AVG(tourism_receipts__2011___millions_of_us) AS $_ FROM table_name_41 WHERE tourist_arrivals__2011___millions_ < 1.141 AND tourism_receipts__2011___us$_per_arrival_ > 1 OFFSET 449 |
What is the tourism competitiveness in 2011 of venezuela? | CREATE TABLE table_name_90 (tourism_competitiveness__2011___ttci_ VARCHAR, country VARCHAR) | SELECT tourism_competitiveness__2011___ttci_ FROM table_name_90 WHERE country = "venezuela" |
What is the highest number of tourism receipts in 2011 US $ per capita with 19.4 % of GDP in 2003 tourism receipts and less than 655 US $ per arrival in 2011 tourism receipts? | CREATE TABLE table_name_99 (tourism_receipts__2011___us INTEGER, tourism_receipts__2003___as__percentage_of_gdp_ VARCHAR, tourism_receipts__2011___us$_per_arrival_ VARCHAR) | SELECT MAX(tourism_receipts__2011___us) AS $_per_capita_ FROM table_name_99 WHERE tourism_receipts__2003___as__percentage_of_gdp_ = "19.4" AND tourism_receipts__2011___us$_per_arrival_ < 655 |
What is the lowest tourism arrivals in 2011 in millions with 507 US $ per arrival in 2011 tourism receipts and less than 11,869 million of US $ in 2011 tourism receipts? | CREATE TABLE table_name_95 (tourist_arrivals__2011___millions_ INTEGER, tourism_receipts__2011___us$_per_arrival_ VARCHAR, tourism_receipts__2011___millions_of_us$_ VARCHAR) | SELECT MIN(tourist_arrivals__2011___millions_) FROM table_name_95 WHERE tourism_receipts__2011___us$_per_arrival_ = 507 AND tourism_receipts__2011___millions_of_us$_ < 11 OFFSET 869 |
What is the highest tourism arrivals in 2011 in millions with a 3.82 tourism competitiveness in 2011 and more than 1,102 US$ per arrival in 2011 tourism receipts? | CREATE TABLE table_name_92 (tourist_arrivals__2011___millions_ INTEGER, tourism_competitiveness__2011___ttci_ VARCHAR, tourism_receipts__2011___us$_per_arrival_ VARCHAR) | SELECT MAX(tourist_arrivals__2011___millions_) FROM table_name_92 WHERE tourism_competitiveness__2011___ttci_ = "3.82" AND tourism_receipts__2011___us$_per_arrival_ > 1 OFFSET 102 |
In what year was Wisconsin the runner-up? | CREATE TABLE table_name_36 (year VARCHAR, runner_up VARCHAR) | SELECT year FROM table_name_36 WHERE runner_up = "wisconsin" |
In what arena was the North Dakota the runner-up? | CREATE TABLE table_name_43 (arena VARCHAR, runner_up VARCHAR) | SELECT arena FROM table_name_43 WHERE runner_up = "north dakota" |
What was the score of the game at the Broadmoor Arena? | CREATE TABLE table_name_38 (score VARCHAR, arena VARCHAR) | SELECT score FROM table_name_38 WHERE arena = "broadmoor arena" |
Who was the runner-up at the Broadmoor Arena before 2008? | CREATE TABLE table_name_43 (runner_up VARCHAR, year VARCHAR, arena VARCHAR) | SELECT runner_up FROM table_name_43 WHERE year < 2008 AND arena = "broadmoor arena" |
In what year was the competition at the Pepsi Arena? | CREATE TABLE table_name_41 (year VARCHAR, arena VARCHAR) | SELECT year FROM table_name_41 WHERE arena = "pepsi arena" |
Which opponent has a 53-24 record? | CREATE TABLE table_name_56 (opponent VARCHAR, record VARCHAR) | SELECT opponent FROM table_name_56 WHERE record = "53-24" |
Who was the opponent for game 73? | CREATE TABLE table_name_10 (opponent VARCHAR, game VARCHAR) | SELECT opponent FROM table_name_10 WHERE game = "73" |
who is the replacement when the team is milton keynes dons? | CREATE TABLE table_name_10 (replaced_by VARCHAR, team VARCHAR) | SELECT replaced_by FROM table_name_10 WHERE team = "milton keynes dons" |
what is the team with the position in table of 24th and the date of appointment 15 september 2008? | CREATE TABLE table_name_50 (team VARCHAR, position_in_table VARCHAR, date_of_appointment VARCHAR) | SELECT team FROM table_name_50 WHERE position_in_table = "24th" AND date_of_appointment = "15 september 2008" |
what is the position in table when the team is hartlepool united? | CREATE TABLE table_name_11 (position_in_table VARCHAR, team VARCHAR) | SELECT position_in_table FROM table_name_11 WHERE team = "hartlepool united" |
what is the team geraint williams is the replacement? | CREATE TABLE table_name_20 (team VARCHAR, replaced_by VARCHAR) | SELECT team FROM table_name_20 WHERE replaced_by = "geraint williams" |
what is the date of vacancy when the position in table is 16th and the outgoing manager is russell slade? | CREATE TABLE table_name_25 (date_of_vacancy VARCHAR, position_in_table VARCHAR, outgoing_manager VARCHAR) | SELECT date_of_vacancy FROM table_name_25 WHERE position_in_table = "16th" AND outgoing_manager = "russell slade" |
What years have 10 (0) in the finals? | CREATE TABLE table_name_33 (years VARCHAR, finals VARCHAR) | SELECT years FROM table_name_33 WHERE finals = "10 (0)" |
What A-League has 6 (1) for the finals, and leigh broxham as the name? | CREATE TABLE table_name_54 (a_league VARCHAR, finals VARCHAR, name VARCHAR) | SELECT a_league FROM table_name_54 WHERE finals = "6 (1)" AND name = "leigh broxham" |
What finals have grant brebner as the name? | CREATE TABLE table_name_40 (finals VARCHAR, name VARCHAR) | SELECT finals FROM table_name_40 WHERE name = "grant brebner" |
What years have 9 (0) as the finals and 133 (1) as the A-League? | CREATE TABLE table_name_12 (years VARCHAR, finals VARCHAR, a_league VARCHAR) | SELECT years FROM table_name_12 WHERE finals = "9 (0)" AND a_league = "133 (1)" |
What years have 9 (3) as the finals? | CREATE TABLE table_name_77 (years VARCHAR, finals VARCHAR) | SELECT years FROM table_name_77 WHERE finals = "9 (3)" |
What years have 101 (16) as the total? | CREATE TABLE table_name_74 (years VARCHAR, total VARCHAR) | SELECT years FROM table_name_74 WHERE total = "101 (16)" |
Who has a time of 7:26.85 and notes of sc/d? | CREATE TABLE table_name_59 (athlete VARCHAR, notes VARCHAR, time VARCHAR) | SELECT athlete FROM table_name_59 WHERE notes = "sc/d" AND time = "7:26.85" |
Ioannis Christou with a rank smaller than 6 has what notes? | CREATE TABLE table_name_71 (notes VARCHAR, rank VARCHAR, athlete VARCHAR) | SELECT notes FROM table_name_71 WHERE rank < 6 AND athlete = "ioannis christou" |
Which Notes have a Distance larger than 7, and a Location of aplin? | CREATE TABLE table_name_62 (notes VARCHAR, distance VARCHAR, location VARCHAR) | SELECT notes FROM table_name_62 WHERE distance > 7 AND location = "aplin" |
How much Distance has a County of faulkner, and a Total smaller than 1.5? | CREATE TABLE table_name_73 (distance INTEGER, county VARCHAR, total VARCHAR) | SELECT SUM(distance) FROM table_name_73 WHERE county = "faulkner" AND total < 1.5 |
How much Distance has Notes of north end terminus of ar 155? | CREATE TABLE table_name_87 (distance INTEGER, notes VARCHAR) | SELECT SUM(distance) FROM table_name_87 WHERE notes = "north end terminus of ar 155" |
How much Latitude has a Water (sqmi) smaller than 0? | CREATE TABLE table_name_69 (latitude VARCHAR, water__sqmi_ INTEGER) | SELECT COUNT(latitude) FROM table_name_69 WHERE water__sqmi_ < 0 |
Which Land (sqmi) has a GEO ID smaller than 3800587900? | CREATE TABLE table_name_49 (land___sqmi__ INTEGER, geo_id INTEGER) | SELECT MIN(land___sqmi__) FROM table_name_49 WHERE geo_id < 3800587900 |
Which Water (sqmi) has a Township of yorktown, and a GEO ID smaller than 3802187940? | CREATE TABLE table_name_22 (water__sqmi_ INTEGER, township VARCHAR, geo_id VARCHAR) | SELECT MIN(water__sqmi_) FROM table_name_22 WHERE township = "yorktown" AND geo_id < 3802187940 |
What school had Jeff Urban playing at the p position? | CREATE TABLE table_name_92 (school VARCHAR, position VARCHAR, player VARCHAR) | SELECT school FROM table_name_92 WHERE position = "p" AND player = "jeff urban" |
What school has the Kansas City Royals for a team? | CREATE TABLE table_name_27 (school VARCHAR, team VARCHAR) | SELECT school FROM table_name_27 WHERE team = "kansas city royals" |
What is the date of the match where vampiro was the winner in Mexico City? | CREATE TABLE table_name_40 (date VARCHAR, location VARCHAR, winner VARCHAR) | SELECT date FROM table_name_40 WHERE location = "mexico city" AND winner = "vampiro" |
What is the wager on August 23, 1992 where vampiro was the winner? | CREATE TABLE table_name_94 (wager VARCHAR, winner VARCHAR, date VARCHAR) | SELECT wager FROM table_name_94 WHERE winner = "vampiro" AND date = "august 23, 1992" |
What is the location where shocker was the winner? | CREATE TABLE table_name_14 (location VARCHAR, winner VARCHAR) | SELECT location FROM table_name_14 WHERE winner = "shocker" |
What is the location where aaron grundy was the loser? | CREATE TABLE table_name_27 (location VARCHAR, loser VARCHAR) | SELECT location FROM table_name_27 WHERE loser = "aaron grundy" |
What is the 1994 when QF is 1999? | CREATE TABLE table_name_4 (Id VARCHAR) | SELECT 1994 FROM table_name_4 WHERE 1999 = "qf" |
What is the 1991 when 1997 is 18? | CREATE TABLE table_name_26 (Id VARCHAR) | SELECT 1991 FROM table_name_26 WHERE 1997 = "18" |
What's the 1991 when 1999 is 14? | CREATE TABLE table_name_25 (Id VARCHAR) | SELECT 1991 FROM table_name_25 WHERE 1999 = "14" |
What's the 1996 when 1997 is 3R? | CREATE TABLE table_name_44 (Id VARCHAR) | SELECT 1996 FROM table_name_44 WHERE 1997 = "3r" |
What is 1994 when 1996 is 3R? | CREATE TABLE table_name_46 (Id VARCHAR) | SELECT 1994 FROM table_name_46 WHERE 1996 = "3r" |
What is 1996 during the US Open? | CREATE TABLE table_name_72 (tournament VARCHAR) | SELECT 1996 FROM table_name_72 WHERE tournament = "us open" |
What's the standard name with an ADSL2 version and a 01.5 1.5 mbit/s downstream rate? | CREATE TABLE table_name_49 (standard_name VARCHAR, version VARCHAR, downstream_rate VARCHAR) | SELECT standard_name FROM table_name_49 WHERE version = "adsl2" AND downstream_rate = "01.5 1.5 mbit/s" |
What's the downstream rate for the Itu g.992.2 having a version of ADSL? | CREATE TABLE table_name_2 (downstream_rate VARCHAR, version VARCHAR, standard_name VARCHAR) | SELECT downstream_rate FROM table_name_2 WHERE version = "adsl" AND standard_name = "itu g.992.2" |
What's the version of Itu g.992.3 Annex J? | CREATE TABLE table_name_97 (version VARCHAR, standard_name VARCHAR) | SELECT version FROM table_name_97 WHERE standard_name = "itu g.992.3 annex j" |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.