training_input
stringlengths 118
1.06k
|
---|
###context:CREATE TABLE table_name_77 (date VARCHAR, record VARCHAR)
###human: Question does not make sense since there was no record of 88-74
###assistant: SELECT date FROM table_name_77 WHERE record = "88-74" |
###context:CREATE TABLE table_name_1 (award VARCHAR, name VARCHAR)
###human: What is the award type for all Lowe awards?
###assistant: SELECT award FROM table_name_1 WHERE name = "lowe" |
###context:CREATE TABLE table_name_57 (engine_s_ VARCHAR, year VARCHAR, points VARCHAR)
###human: Which engine(s) has a year of 1966, and a point of 42.
###assistant: SELECT engine_s_ FROM table_name_57 WHERE year = 1966 AND points = "42" |
###context:CREATE TABLE table_name_32 (score1 VARCHAR, opponent VARCHAR)
###human: What was the score against hapoel tel aviv?
###assistant: SELECT score1 FROM table_name_32 WHERE opponent = "hapoel tel aviv" |
###context:CREATE TABLE table_name_51 (date VARCHAR, opponent VARCHAR)
###human: What day did they play cambridge united?
###assistant: SELECT date FROM table_name_51 WHERE opponent = "cambridge united" |
###context:CREATE TABLE table_name_65 (ground VARCHAR, match VARCHAR)
###human: Where was match 8 played?
###assistant: SELECT ground FROM table_name_65 WHERE match = 8 |
###context:CREATE TABLE table_name_63 (name_ VARCHAR, b_ VARCHAR, Pwin_percentage VARCHAR)
###human: What is the name of the person with a PWin% of .696?
###assistant: SELECT name_[b_] FROM table_name_63 WHERE Pwin_percentage = 0.696 |
###context:CREATE TABLE table_name_30 (games INTEGER, win_percentage VARCHAR, Pwin_percentage VARCHAR, — VARCHAR, term_ VARCHAR, c_ VARCHAR)
###human: What is the sum of the game with a PWin% of —, Term [c] of 1987–1988, and Win% less than 0.506?
###assistant: SELECT SUM(games) FROM table_name_30 WHERE Pwin_percentage = — AND term_[c_] = "1987–1988" AND win_percentage < 0.506 |
###context:CREATE TABLE table_name_88 (win_percentage VARCHAR, games VARCHAR, Pwin_percentage VARCHAR, — VARCHAR, term_ VARCHAR, c_ VARCHAR)
###human: What is the win% for the game 80 and a PWin% of —, and a Term [c ] of 1987–1988?
###assistant: SELECT win_percentage FROM table_name_88 WHERE games = 80 AND Pwin_percentage = — AND term_[c_] = "1987–1988" |
###context:CREATE TABLE table_name_24 (games INTEGER, term_ VARCHAR, c_ VARCHAR)
###human: What is the of games when for the term [c] of 1969 – 1973?
###assistant: SELECT SUM(games) FROM table_name_24 WHERE term_[c_] = "1969 – 1973" |
###context:CREATE TABLE table_name_6 (method VARCHAR, date_of_execution VARCHAR)
###human: What was the method of execution on September 24, 1830?
###assistant: SELECT method FROM table_name_6 WHERE date_of_execution = "september 24, 1830" |
###context:CREATE TABLE table_name_19 (method VARCHAR, race VARCHAR, name VARCHAR)
###human: How was the native american, Wau-Bau-Ne-Me-Mee, executed?
###assistant: SELECT method FROM table_name_19 WHERE race = "native american" AND name = "wau-bau-ne-me-mee" |
###context:CREATE TABLE table_name_52 (race VARCHAR, date_of_execution VARCHAR)
###human: What was the race of the person executed on December 27, 1827?
###assistant: SELECT race FROM table_name_52 WHERE date_of_execution = "december 27, 1827" |
###context:CREATE TABLE table_name_99 (method VARCHAR, date_of_execution VARCHAR, name VARCHAR)
###human: In what way was Kewaubis executed on December 27, 1827?
###assistant: SELECT method FROM table_name_99 WHERE date_of_execution = "december 27, 1827" AND name = "kewaubis" |
###context:CREATE TABLE table_name_30 (method VARCHAR, race VARCHAR, date_of_execution VARCHAR)
###human: How was the native american executed in July 1836?
###assistant: SELECT method FROM table_name_30 WHERE race = "native american" AND date_of_execution = "july 1836" |
###context:CREATE TABLE table_name_85 (draws INTEGER, goal_differential VARCHAR, wins VARCHAR, losses VARCHAR)
###human: How many draws have 1 win, 1 loss, and a Goal Differential of +1?
###assistant: SELECT SUM(draws) FROM table_name_85 WHERE wins = 1 AND losses = 1 AND goal_differential = "+1" |
###context:CREATE TABLE table_name_85 (genre VARCHAR, artist VARCHAR)
###human: What genre is Led Zeppelin?
###assistant: SELECT genre FROM table_name_85 WHERE artist = "led zeppelin" |
###context:CREATE TABLE table_name_40 (date VARCHAR, loss VARCHAR)
###human: On what date was the Loss by Flanagan (6-7)?
###assistant: SELECT date FROM table_name_40 WHERE loss = "flanagan (6-7)" |
###context:CREATE TABLE table_name_45 (loss VARCHAR, record VARCHAR)
###human: During which loss was the record 48-50?
###assistant: SELECT loss FROM table_name_45 WHERE record = "48-50" |
###context:CREATE TABLE table_name_22 (score VARCHAR, record VARCHAR)
###human: What was the score that made the record 47-49?
###assistant: SELECT score FROM table_name_22 WHERE record = "47-49" |
###context:CREATE TABLE table_name_61 (opponent VARCHAR, date VARCHAR)
###human: Who was the Opponent on July 29?
###assistant: SELECT opponent FROM table_name_61 WHERE date = "july 29" |
###context:CREATE TABLE table_name_27 (record VARCHAR, loss VARCHAR)
###human: What was the record during the loss by key (7-11)?
###assistant: SELECT record FROM table_name_27 WHERE loss = "key (7-11)" |
###context:CREATE TABLE table_name_2 (diagram INTEGER, builder VARCHAR)
###human: What is the total diagram for builder york?
###assistant: SELECT SUM(diagram) FROM table_name_2 WHERE builder = "york" |
###context:CREATE TABLE table_name_68 (fleet_numbers VARCHAR, diagram VARCHAR, built VARCHAR)
###human: What fleet numbers have a diagram less than 99 and built in 1960?
###assistant: SELECT fleet_numbers FROM table_name_68 WHERE diagram < 99 AND built = "1960" |
###context:CREATE TABLE table_name_4 (diagram INTEGER, built VARCHAR, lot_no VARCHAR)
###human: What diagram built in 1962 has a lot number smaller than 30702?
###assistant: SELECT MIN(diagram) FROM table_name_4 WHERE built = "1962" AND lot_no < 30702 |
###context:CREATE TABLE table_name_44 (builder VARCHAR, lot_no VARCHAR)
###human: What builder has lot number 30702?
###assistant: SELECT builder FROM table_name_44 WHERE lot_no = 30702 |
###context:CREATE TABLE table_name_92 (genre VARCHAR, year VARCHAR, name VARCHAR)
###human: Which Genre has a Year before 2013, and a Name of kikumana?
###assistant: SELECT genre FROM table_name_92 WHERE year < 2013 AND name = "kikumana" |
###context:CREATE TABLE table_name_91 (year INTEGER, post VARCHAR)
###human: In what year has a Post of designer?
###assistant: SELECT SUM(year) FROM table_name_91 WHERE post = "designer" |
###context:CREATE TABLE table_name_97 (visitor VARCHAR, home VARCHAR, date VARCHAR)
###human: Who is listed as the Visitor that has a Home of Boston Bruins and a Date of November 15?
###assistant: SELECT visitor FROM table_name_97 WHERE home = "boston bruins" AND date = "november 15" |
###context:CREATE TABLE table_name_13 (visitor VARCHAR, date VARCHAR)
###human: Which Visitor is listed as having a Date of December 17?
###assistant: SELECT visitor FROM table_name_13 WHERE date = "december 17" |
###context:CREATE TABLE table_name_45 (score VARCHAR, visitor VARCHAR, date VARCHAR)
###human: What's the Score with the Visitor of Montreal Maroons and has a Date of December 28?
###assistant: SELECT score FROM table_name_45 WHERE visitor = "montreal maroons" AND date = "december 28" |
###context:CREATE TABLE table_name_97 (attendance VARCHAR, week VARCHAR, opponent VARCHAR)
###human: What's the attendance of the san diego chargers game before week 6?
###assistant: SELECT COUNT(attendance) FROM table_name_97 WHERE week < 6 AND opponent = "san diego chargers" |
###context:CREATE TABLE table_name_97 (wins VARCHAR, events VARCHAR, top_25 VARCHAR, cuts_made VARCHAR)
###human: How many wins have a Top-25 of 1, Less than 2 cuts, and fewer than 5 events?
###assistant: SELECT COUNT(wins) FROM table_name_97 WHERE top_25 = 1 AND cuts_made < 2 AND events < 5 |
###context:CREATE TABLE table_name_38 (events INTEGER, top_25 VARCHAR, cuts_made VARCHAR)
###human: How many events have a Top-25 of 1 and made less than 1 cut?
###assistant: SELECT MAX(events) FROM table_name_38 WHERE top_25 = 1 AND cuts_made < 1 |
###context:CREATE TABLE table_name_10 (events INTEGER, tournament VARCHAR, wins VARCHAR)
###human: During the PGA Championship, what's the lowest amount of events with wins greater than 0?
###assistant: SELECT MIN(events) FROM table_name_10 WHERE tournament = "pga championship" AND wins > 0 |
###context:CREATE TABLE table_name_65 (cuts_made INTEGER, wins INTEGER)
###human: What's the lowest number of cuts made while the win was less than 0?
###assistant: SELECT MIN(cuts_made) FROM table_name_65 WHERE wins < 0 |
###context:CREATE TABLE table_name_64 (reactortype VARCHAR, gross_capacity VARCHAR, electricity_grid VARCHAR)
###human: Which Reactortype has a gross capacity of 417 mw and an Electricity Grid of 27.12.1971?
###assistant: SELECT reactortype FROM table_name_64 WHERE gross_capacity = "417 mw" AND electricity_grid = "27.12.1971" |
###context:CREATE TABLE table_name_61 (unit VARCHAR, construction_started VARCHAR)
###human: Which Unit's Construction started on 01.07.1967?
###assistant: SELECT unit FROM table_name_61 WHERE construction_started = "01.07.1967" |
###context:CREATE TABLE table_name_48 (commercial_operation VARCHAR, gross_capacity VARCHAR, electricity_grid VARCHAR)
###human: Which Commercial Operation has both a Gross Capacity of 417 mw and an Electricity Grid 27.12.1971?
###assistant: SELECT commercial_operation FROM table_name_48 WHERE gross_capacity = "417 mw" AND electricity_grid = "27.12.1971" |
###context:CREATE TABLE table_name_26 (shutdown VARCHAR, electricity_grid VARCHAR)
###human: When did the Electricity Grid 28.12.1972 officially shutdown?
###assistant: SELECT shutdown FROM table_name_26 WHERE electricity_grid = "28.12.1972" |
###context:CREATE TABLE table_name_17 (electricity_grid VARCHAR, commercial_operation VARCHAR)
###human: Which Electricity Grid started its Commercial Operation of 24.03.1973?
###assistant: SELECT electricity_grid FROM table_name_17 WHERE commercial_operation = "24.03.1973" |
###context:CREATE TABLE table_name_70 (name VARCHAR, app_gs_sub_ VARCHAR)
###human: Tell what has the App(GS/Sub) of 14 (8/6)
###assistant: SELECT name FROM table_name_70 WHERE app_gs_sub_ = "14 (8/6)" |
###context:CREATE TABLE table_name_57 (goals VARCHAR, since VARCHAR, app_gs_sub_ VARCHAR)
###human: Name the goals with since less than 2007 and App(GS/Sub) of 97 (69/28)
###assistant: SELECT goals FROM table_name_57 WHERE since < 2007 AND app_gs_sub_ = "97 (69/28)" |
###context:CREATE TABLE table_name_65 (date VARCHAR, venue VARCHAR)
###human: When is Cadott Rock Fest taken place?
###assistant: SELECT date FROM table_name_65 WHERE venue = "cadott rock fest" |
###context:CREATE TABLE table_name_29 (city VARCHAR, venue VARCHAR)
###human: Which City has mandalay bay resort
###assistant: SELECT city FROM table_name_29 WHERE venue = "mandalay bay resort" |
###context:CREATE TABLE table_name_70 (city VARCHAR, date VARCHAR)
###human: Which City has a Date on october 26, 2007
###assistant: SELECT city FROM table_name_70 WHERE date = "october 26, 2007" |
###context:CREATE TABLE table_name_75 (attendance VARCHAR, venue VARCHAR)
###human: Which Attendance has Mandalay Bay Resort
###assistant: SELECT attendance FROM table_name_75 WHERE venue = "mandalay bay resort" |
###context:CREATE TABLE table_name_22 (date VARCHAR, country VARCHAR, venue VARCHAR)
###human: When is Country of united states, and a Venue of mandalay bay resort in?
###assistant: SELECT date FROM table_name_22 WHERE country = "united states" AND venue = "mandalay bay resort" |
###context:CREATE TABLE table_name_63 (date VARCHAR, city VARCHAR)
###human: When has a City of san jacinto, california?
###assistant: SELECT date FROM table_name_63 WHERE city = "san jacinto, california" |
###context:CREATE TABLE table_name_37 (chassis VARCHAR, year VARCHAR, points VARCHAR, entrant VARCHAR)
###human: Which Chassis has more than 0 points, an Entrant of Scuderia Ferrari, and was later than 1952?
###assistant: SELECT chassis FROM table_name_37 WHERE points > 0 AND entrant = "scuderia ferrari" AND year > 1952 |
###context:CREATE TABLE table_name_47 (entrant VARCHAR, engine VARCHAR)
###human: Which Entrant has a vanwall straight-4 engine?
###assistant: SELECT entrant FROM table_name_47 WHERE engine = "vanwall straight-4" |
###context:CREATE TABLE table_name_58 (region VARCHAR, date VARCHAR)
###human: Which region has a date of 1970?
###assistant: SELECT region FROM table_name_58 WHERE date = "1970" |
###context:CREATE TABLE table_name_52 (label VARCHAR, date VARCHAR)
###human: Which label has a date of 1987?
###assistant: SELECT label FROM table_name_52 WHERE date = "1987" |
###context:CREATE TABLE table_name_39 (catalogue VARCHAR, format VARCHAR)
###human: Which catalogue has a formate of "CD Remastered with 3 bonus tracks"?
###assistant: SELECT catalogue FROM table_name_39 WHERE format = "cd remastered with 3 bonus tracks" |
###context:CREATE TABLE table_name_63 (catalogue VARCHAR, date VARCHAR)
###human: Which catalogue has a date of 1987?
###assistant: SELECT catalogue FROM table_name_63 WHERE date = "1987" |
###context:CREATE TABLE table_name_94 (season INTEGER, runners_up VARCHAR)
###human: What is the latest season where Al Ahly is the runners-up?
###assistant: SELECT MAX(season) FROM table_name_94 WHERE runners_up = "al ahly" |
###context:CREATE TABLE table_name_87 (season VARCHAR, score VARCHAR)
###human: What is the season where Vasco da gama is the score?
###assistant: SELECT season FROM table_name_87 WHERE score = "vasco da gama" |
###context:CREATE TABLE table_name_92 (winners VARCHAR, season VARCHAR)
###human: Who is the winner in 2010?
###assistant: SELECT winners FROM table_name_92 WHERE season = 2010 |
###context:CREATE TABLE table_name_30 (winners VARCHAR, season VARCHAR)
###human: Who is the winner in 2011?
###assistant: SELECT winners FROM table_name_30 WHERE season = 2011 |
###context:CREATE TABLE table_name_79 (third_place VARCHAR, host VARCHAR, season VARCHAR)
###human: What was the third place of the performance in 2006 with the host Japan?
###assistant: SELECT third_place FROM table_name_79 WHERE host = "japan" AND season < 2006 |
###context:CREATE TABLE table_name_11 (round VARCHAR, club VARCHAR)
###human: Which round did Dundee United end in?
###assistant: SELECT round FROM table_name_11 WHERE club = "dundee united" |
###context:CREATE TABLE table_name_25 (event VARCHAR, pursuit VARCHAR, sprint VARCHAR)
###human: Name the event with pursuit of 18th and sprint of 20th
###assistant: SELECT event FROM table_name_25 WHERE pursuit = "18th" AND sprint = "20th" |
###context:CREATE TABLE table_name_43 (pursuit VARCHAR, event VARCHAR)
###human: Name the pursuit for 1994 lillehammer
###assistant: SELECT pursuit FROM table_name_43 WHERE event = "1994 lillehammer" |
###context:CREATE TABLE table_name_28 (sprint VARCHAR, mass_start VARCHAR)
###human: Name the sprint with mass start of 2nd
###assistant: SELECT sprint FROM table_name_28 WHERE mass_start = "2nd" |
###context:CREATE TABLE table_name_31 (country VARCHAR, year VARCHAR)
###human: What country had a film in 1993?
###assistant: SELECT country FROM table_name_31 WHERE year = 1993 |
###context:CREATE TABLE table_name_16 (location VARCHAR, event VARCHAR, time VARCHAR)
###human: Where was Extreme Challenge 63 with a time of 2:00 held?
###assistant: SELECT location FROM table_name_16 WHERE event = "extreme challenge 63" AND time = "2:00" |
###context:CREATE TABLE table_name_30 (round VARCHAR, event VARCHAR)
###human: How many total rounds were there at UFC 114?
###assistant: SELECT COUNT(round) FROM table_name_30 WHERE event = "ufc 114" |
###context:CREATE TABLE table_name_1 (res VARCHAR, time VARCHAR)
###human: In the round that lasted 0:20, what was the Res?
###assistant: SELECT res FROM table_name_1 WHERE time = "0:20" |
###context:CREATE TABLE table_name_94 (city VARCHAR, event VARCHAR)
###human: In what City was the Ept Baden Classic?
###assistant: SELECT city FROM table_name_94 WHERE event = "ept baden classic" |
###context:CREATE TABLE table_name_77 (event VARCHAR, prize VARCHAR)
###human: What Event has a Prize of €869,000?
###assistant: SELECT event FROM table_name_77 WHERE prize = "€869,000" |
###context:CREATE TABLE table_name_22 (winner VARCHAR, prize VARCHAR)
###human: What Winner had a Prize of zł2,153,999?
###assistant: SELECT winner FROM table_name_22 WHERE prize = "zł2,153,999" |
###context:CREATE TABLE table_name_6 (decile INTEGER, roll INTEGER)
###human: How many decile has a roll less than 20?
###assistant: SELECT AVG(decile) FROM table_name_6 WHERE roll < 20 |
###context:CREATE TABLE table_name_62 (gender VARCHAR, roll VARCHAR)
###human: Which gender had a roll of 627?
###assistant: SELECT gender FROM table_name_62 WHERE roll = 627 |
###context:CREATE TABLE table_name_11 (area VARCHAR, decile VARCHAR, name VARCHAR)
###human: Glenorchy school has a decile less than 10 and is in what area?
###assistant: SELECT area FROM table_name_11 WHERE decile < 10 AND name = "glenorchy school" |
###context:CREATE TABLE table_name_24 (gender VARCHAR, roll VARCHAR, name VARCHAR)
###human: Makarora primary school has a roll less than 141 and what gender?
###assistant: SELECT gender FROM table_name_24 WHERE roll < 141 AND name = "makarora primary school" |
###context:CREATE TABLE table_name_78 (season VARCHAR, round VARCHAR, club VARCHAR)
###human: In what season did the Sporting CP Club have a 1. round?
###assistant: SELECT season FROM table_name_78 WHERE round = "1. round" AND club = "sporting cp" |
###context:CREATE TABLE table_name_28 (away VARCHAR, club VARCHAR)
###human: The Club of Ekranas was an away with a score of what?
###assistant: SELECT away FROM table_name_28 WHERE club = "ekranas" |
###context:CREATE TABLE table_name_22 (lane VARCHAR, name VARCHAR)
###human: What is Rhiannon Leier's lane?
###assistant: SELECT lane FROM table_name_22 WHERE name = "rhiannon leier" |
###context:CREATE TABLE table_name_13 (pennant VARCHAR, name VARCHAR)
###human: What pennant does Narbada have?
###assistant: SELECT pennant FROM table_name_13 WHERE name = "narbada" |
###context:CREATE TABLE table_name_26 (laid_down VARCHAR, pennant VARCHAR)
###human: What date was the U21 pennant laid down?
###assistant: SELECT laid_down FROM table_name_26 WHERE pennant = "u21" |
###context:CREATE TABLE table_name_10 (position VARCHAR, overall VARCHAR, college VARCHAR)
###human: What position went lower than 106 from the College of Virginia?
###assistant: SELECT position FROM table_name_10 WHERE overall < 106 AND college = "virginia" |
###context:CREATE TABLE table_name_17 (round INTEGER, position VARCHAR)
###human: What is the lowest round a fullback went in?
###assistant: SELECT MIN(round) FROM table_name_17 WHERE position = "fullback" |
###context:CREATE TABLE table_name_6 (province VARCHAR, rank INTEGER)
###human: Name the province with rank more than 49
###assistant: SELECT province FROM table_name_6 WHERE rank > 49 |
###context:CREATE TABLE table_name_17 (mountain_peak VARCHAR, location VARCHAR)
###human: Name the mountain peak with location of 46.7000°n 60.5992°w
###assistant: SELECT mountain_peak FROM table_name_17 WHERE location = "46.7000°n 60.5992°w" |
###context:CREATE TABLE table_name_16 (mountain_peak VARCHAR, rank VARCHAR, location VARCHAR)
###human: Name the mountain peak with rank less than 6 abd location of 81.9083°n 75.0250°w
###assistant: SELECT mountain_peak FROM table_name_16 WHERE rank < 6 AND location = "81.9083°n 75.0250°w" |
###context:CREATE TABLE table_name_26 (mountain_range VARCHAR, province VARCHAR, location VARCHAR)
###human: Name the mountain range for nunavut with location of 73.2294°n 78.6233°w
###assistant: SELECT mountain_range FROM table_name_26 WHERE province = "nunavut" AND location = "73.2294°n 78.6233°w" |
###context:CREATE TABLE table_name_67 (mountain_peak VARCHAR, rank VARCHAR)
###human: Name the mountain peak of 49 rank
###assistant: SELECT mountain_peak FROM table_name_67 WHERE rank = 49 |
###context:CREATE TABLE table_name_94 (live_births_2006 INTEGER, whites_as__percentage_of_pop VARCHAR, tfr_2006 VARCHAR)
###human: What is the total number of live births in 2006 with 98.40% of the population as Whites and has more than 2 for the TFR?
###assistant: SELECT SUM(live_births_2006) FROM table_name_94 WHERE whites_as__percentage_of_pop = "98.40%" AND tfr_2006 > 2 |
###context:CREATE TABLE table_name_64 (gfr_2006 INTEGER, whites_as__percentage_of_pop VARCHAR, tfr_2006 VARCHAR)
###human: What is the lowest total GFR that has 95.80% of the population as Whites, and a TFR total larger than 2.14, in 2006?
###assistant: SELECT MIN(gfr_2006) FROM table_name_64 WHERE whites_as__percentage_of_pop = "95.80%" AND tfr_2006 > 2.14 |
###context:CREATE TABLE table_name_6 (live_births_2006 INTEGER, county VARCHAR, tfr_2006 VARCHAR)
###human: In 2006, what is the highest number for Live births in the County of Cumbria that has a TFR larger than 1.76?
###assistant: SELECT MAX(live_births_2006) FROM table_name_6 WHERE county = "cumbria" AND tfr_2006 > 1.76 |
###context:CREATE TABLE table_name_46 (year INTEGER, team VARCHAR)
###human: Question doesn't make sense since there is no team of pramac d'antin ducati
###assistant: SELECT MIN(year) FROM table_name_46 WHERE team = "pramac d'antin ducati" |
###context:CREATE TABLE table_name_4 (player VARCHAR, current_club VARCHAR, year_born VARCHAR)
###human: Which player from the Ironi Nahariya club was born in 1980?
###assistant: SELECT player FROM table_name_4 WHERE current_club = "ironi nahariya" AND year_born = 1980 |
###context:CREATE TABLE table_name_10 (position VARCHAR, year_born VARCHAR, current_club VARCHAR)
###human: Which position from the Cherkassy Monkeys' club was born after 1978?
###assistant: SELECT position FROM table_name_10 WHERE year_born > 1978 AND current_club = "cherkassy monkeys" |
###context:CREATE TABLE table_name_19 (rank INTEGER, headquarters VARCHAR, screens VARCHAR)
###human: What is the rank of the cinema when the headquarters are in toronto, ON and the screens is less than 1,438?
###assistant: SELECT AVG(rank) FROM table_name_19 WHERE headquarters = "toronto, on" AND screens < 1 OFFSET 438 |
###context:CREATE TABLE table_name_3 (rank INTEGER, sites VARCHAR, circuit VARCHAR)
###human: what is the rank of the cinema when the number of sites is more than 62 and the circuit is cineplex entertainment?
###assistant: SELECT SUM(rank) FROM table_name_3 WHERE sites > 62 AND circuit = "cineplex entertainment" |
###context:CREATE TABLE table_name_8 (sites INTEGER, screens VARCHAR, rank VARCHAR)
###human: what is the number of sites when the number of screens is 687 and rank is more than 7?
###assistant: SELECT AVG(sites) FROM table_name_8 WHERE screens = 687 AND rank > 7 |
###context:CREATE TABLE table_name_33 (sites INTEGER, headquarters VARCHAR, rank VARCHAR)
###human: what is the lowest number of sites when the headquarters are in columbus, ga and the rank is smaller than 4?
###assistant: SELECT MIN(sites) FROM table_name_33 WHERE headquarters = "columbus, ga" AND rank < 4 |
###context:CREATE TABLE table_name_9 (other VARCHAR, value VARCHAR)
###human: What is the Other transliteration for value 1 000?
###assistant: SELECT other FROM table_name_9 WHERE value = "1 000" |
###context:CREATE TABLE table_name_55 (word_form VARCHAR, ala_lc VARCHAR)
###human: What is the word form for the ALA-LC transliteration of muay s″ain?
###assistant: SELECT word_form FROM table_name_55 WHERE ala_lc = "muay s″ain" |
###context:CREATE TABLE table_name_90 (value VARCHAR, other VARCHAR)
###human: What number value has the Other transliteration of muoy roy?
###assistant: SELECT value FROM table_name_90 WHERE other = "muoy roy" |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.