question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
|
---|---|---|
Who were the crew for the Falcon? | CREATE TABLE table_name_87 (crew VARCHAR, lunar_lander VARCHAR) | SELECT crew FROM table_name_87 WHERE lunar_lander = "falcon" |
What is the average number of EVA for the Orion? | CREATE TABLE table_name_50 (number_of_s_eva INTEGER, lunar_lander VARCHAR) | SELECT AVG(number_of_s_eva) FROM table_name_50 WHERE lunar_lander = "orion" |
What is the highest Year, when Rank is less than 28, and when Accolade is "The 100 greatest metal albums of the decade"? | CREATE TABLE table_name_59 (year INTEGER, rank VARCHAR, accolade VARCHAR) | SELECT MAX(year) FROM table_name_59 WHERE rank < 28 AND accolade = "the 100 greatest metal albums of the decade" |
What is Accolade, when Year is less than 2009, and when Country is Germany? | CREATE TABLE table_name_3 (accolade VARCHAR, year VARCHAR, country VARCHAR) | SELECT accolade FROM table_name_3 WHERE year < 2009 AND country = "germany" |
What is the highest Rank, when Publication is Dagsavisen, and when Year is less than 2005? | CREATE TABLE table_name_81 (rank INTEGER, publication VARCHAR, year VARCHAR) | SELECT MAX(rank) FROM table_name_81 WHERE publication = "dagsavisen" AND year < 2005 |
When has a Score of 0–0, and a Away team of scunthorpe united? | CREATE TABLE table_name_65 (date VARCHAR, score VARCHAR, away_team VARCHAR) | SELECT date FROM table_name_65 WHERE score = "0–0" AND away_team = "scunthorpe united" |
Which Tie has a Score of 5–1? | CREATE TABLE table_name_98 (tie_no VARCHAR, score VARCHAR) | SELECT tie_no FROM table_name_98 WHERE score = "5–1" |
Which Home team that has a Tie no of 20? | CREATE TABLE table_name_74 (home_team VARCHAR, tie_no VARCHAR) | SELECT home_team FROM table_name_74 WHERE tie_no = "20" |
Which Home has a Tie no of 6? | CREATE TABLE table_name_26 (home_team VARCHAR, tie_no VARCHAR) | SELECT home_team FROM table_name_26 WHERE tie_no = "6" |
Which Away team that has a Tie no of replay, and a Score of 1–2? | CREATE TABLE table_name_93 (away_team VARCHAR, tie_no VARCHAR, score VARCHAR) | SELECT away_team FROM table_name_93 WHERE tie_no = "replay" AND score = "1–2" |
Which Score has a Away team of walthamstow avenue? | CREATE TABLE table_name_44 (score VARCHAR, away_team VARCHAR) | SELECT score FROM table_name_44 WHERE away_team = "walthamstow avenue" |
How many gp-gs have 121.70 as an effic and an avg/g less than 218.7? | CREATE TABLE table_name_41 (gp_gs VARCHAR, effic VARCHAR, avg_g VARCHAR) | SELECT COUNT(gp_gs) FROM table_name_41 WHERE effic = "121.70" AND avg_g < 218.7 |
What is the lowest gp-gs that has an avg/g less than 234.3, with 410.80 as the effic? | CREATE TABLE table_name_42 (gp_gs INTEGER, avg_g VARCHAR, effic VARCHAR) | SELECT MIN(gp_gs) FROM table_name_42 WHERE avg_g < 234.3 AND effic = "410.80" |
What is the last 10 meetings that have slu, 9-8 as the overall record? | CREATE TABLE table_name_52 (last_10_meetings VARCHAR, overall_record VARCHAR) | SELECT last_10_meetings FROM table_name_52 WHERE overall_record = "slu, 9-8" |
What is the last 5 meetings that has w 5 as the current streak, and 3/18/2010 as the last meeting? | CREATE TABLE table_name_69 (last_5_meetings VARCHAR, current_streak VARCHAR, last_meeting VARCHAR) | SELECT last_5_meetings FROM table_name_69 WHERE current_streak = "w 5" AND last_meeting = "3/18/2010" |
What is the last 10 meetings that have 12 as the games played? | CREATE TABLE table_name_43 (last_10_meetings VARCHAR, games_played VARCHAR) | SELECT last_10_meetings FROM table_name_43 WHERE games_played = "12" |
What is the last 10 meetings that have 11/26/1988 as the lasr meeting? | CREATE TABLE table_name_32 (last_10_meetings VARCHAR, last_meeting VARCHAR) | SELECT last_10_meetings FROM table_name_32 WHERE last_meeting = "11/26/1988" |
What kansas vs. that has w 2 as the current streak, and 31 as games played? | CREATE TABLE table_name_85 (kansas_state_vs VARCHAR, current_streak VARCHAR, games_played VARCHAR) | SELECT kansas_state_vs FROM table_name_85 WHERE current_streak = "w 2" AND games_played = "31" |
What is the sum of the attendance during the game against the philadelphia eagles after week 9? | CREATE TABLE table_name_58 (attendance INTEGER, opponent VARCHAR, week VARCHAR) | SELECT SUM(attendance) FROM table_name_58 WHERE opponent = "philadelphia eagles" AND week > 9 |
What is the total number of fans attending the game on October 8, 1989 before week 5? | CREATE TABLE table_name_4 (attendance VARCHAR, date VARCHAR, week VARCHAR) | SELECT COUNT(attendance) FROM table_name_4 WHERE date = "october 8, 1989" AND week < 5 |
What is the qualities of the sign cancer? | CREATE TABLE table_name_59 (qualities VARCHAR, sign VARCHAR) | SELECT qualities FROM table_name_59 WHERE sign = "cancer" |
What is the south season of the scorpio sign, which has cold & wet qualities? | CREATE TABLE table_name_88 (season VARCHAR, qualities VARCHAR, sign VARCHAR) | SELECT season AS :_south FROM table_name_88 WHERE qualities = "cold & wet" AND sign = "scorpio" |
What is the average Prize fund ( US$ ), when OWGR pts is greater than 20, and when Dates is Nov 6-9? | CREATE TABLE table_name_56 (prize_fund___us INTEGER, owgr_pts VARCHAR, dates VARCHAR) | SELECT AVG(prize_fund___us) AS $__ FROM table_name_56 WHERE owgr_pts > 20 AND dates = "nov 6-9" |
What is Winner, when Dates is Dec 11-14? | CREATE TABLE table_name_18 (winner VARCHAR, dates VARCHAR) | SELECT winner FROM table_name_18 WHERE dates = "dec 11-14" |
What is the lowest number of games with a rank less than 1? | CREATE TABLE table_name_48 (games INTEGER, rank INTEGER) | SELECT MIN(games) FROM table_name_48 WHERE rank < 1 |
What is the name of the player with 305 points? | CREATE TABLE table_name_46 (name VARCHAR, points VARCHAR) | SELECT name FROM table_name_46 WHERE points = 305 |
What is the total rank of team roanne, which has less than 14 games? | CREATE TABLE table_name_58 (rank VARCHAR, team VARCHAR, games VARCHAR) | SELECT COUNT(rank) FROM table_name_58 WHERE team = "roanne" AND games < 14 |
What is the lowest of Episode Number that has a Air Date on 20 july 2007? | CREATE TABLE table_name_79 (episode_number INTEGER, air_date VARCHAR) | SELECT MIN(episode_number) FROM table_name_79 WHERE air_date = "20 july 2007" |
What kind of Guest Host has a Episode Number of 7? | CREATE TABLE table_name_19 (guest_host VARCHAR, episode_number VARCHAR) | SELECT guest_host FROM table_name_19 WHERE episode_number = 7 |
What kind of Episode Number has a Air Date on 29 june 2007? | CREATE TABLE table_name_41 (episode_number INTEGER, air_date VARCHAR) | SELECT AVG(episode_number) FROM table_name_41 WHERE air_date = "29 june 2007" |
What kind of Guest Host has a Episode Number of 7? | CREATE TABLE table_name_10 (guest_host VARCHAR, episode_number VARCHAR) | SELECT guest_host FROM table_name_10 WHERE episode_number = 7 |
WHich Coat of Cash" Wearing Celebrity has a Episode Number larger than 1 and with amy macdonald ( mr rock & roll )? | CREATE TABLE table_name_92 (episode_number VARCHAR, musical_guest__song_performed_ VARCHAR) | SELECT "coat_of_cash" AS _wearing_celebrity FROM table_name_92 WHERE episode_number > 1 AND musical_guest__song_performed_ = "amy macdonald ( mr rock & roll )" |
What is the highest bronze when the silver was 3 and the total was larger than 5? | CREATE TABLE table_name_20 (bronze INTEGER, silver VARCHAR, total VARCHAR) | SELECT MAX(bronze) FROM table_name_20 WHERE silver = 3 AND total > 5 |
What is the highest bronze when the silver was 0, the gold was larger than 0, and the total was larger than 2? | CREATE TABLE table_name_67 (bronze INTEGER, total VARCHAR, silver VARCHAR, gold VARCHAR) | SELECT MAX(bronze) FROM table_name_67 WHERE silver = 0 AND gold > 0 AND total > 2 |
What is the lowest silver for France with a rank less than 5 and a total larger than 19? | CREATE TABLE table_name_43 (silver INTEGER, total VARCHAR, rank VARCHAR, nation VARCHAR) | SELECT MIN(silver) FROM table_name_43 WHERE rank < 5 AND nation = "france" AND total > 19 |
How many bronze had a rank of less than 6 and a total less than 5? | CREATE TABLE table_name_43 (bronze VARCHAR, rank VARCHAR, total VARCHAR) | SELECT COUNT(bronze) FROM table_name_43 WHERE rank < 6 AND total < 5 |
Which date was the Winning Score 72-66-67-71=276? | CREATE TABLE table_name_87 (date VARCHAR, winning_score VARCHAR) | SELECT date FROM table_name_87 WHERE winning_score = 72 - 66 - 67 - 71 = 276 |
What is the Margin of victory at the Bob Hope Desert Classic Tournament? | CREATE TABLE table_name_54 (margin_of_victory VARCHAR, tournament VARCHAR) | SELECT margin_of_victory FROM table_name_54 WHERE tournament = "bob hope desert classic" |
On what Date is the Winning Score 71-69-68-70=278? | CREATE TABLE table_name_60 (date VARCHAR, winning_score VARCHAR) | SELECT date FROM table_name_60 WHERE winning_score = 71 - 69 - 68 - 70 = 278 |
What draw did Nigel Connell? | CREATE TABLE table_name_95 (draw VARCHAR, performer VARCHAR) | SELECT draw FROM table_name_95 WHERE performer = "nigel connell" |
Who scored 57 points? | CREATE TABLE table_name_22 (performer VARCHAR, points VARCHAR) | SELECT performer FROM table_name_22 WHERE points = 57 |
How many points did Nigel Connell have? | CREATE TABLE table_name_44 (points VARCHAR, performer VARCHAR) | SELECT points FROM table_name_44 WHERE performer = "nigel connell" |
How many draws did gary o'shaughnessy have? | CREATE TABLE table_name_91 (draw INTEGER, performer VARCHAR) | SELECT SUM(draw) FROM table_name_91 WHERE performer = "gary o'shaughnessy" |
What is the Attendance with a Week that is 18? | CREATE TABLE table_name_19 (attendance VARCHAR, week VARCHAR) | SELECT attendance FROM table_name_19 WHERE week = 18 |
What Attendance has a Date that is november 1, 1993? | CREATE TABLE table_name_69 (attendance VARCHAR, date VARCHAR) | SELECT attendance FROM table_name_69 WHERE date = "november 1, 1993" |
What is the Record with a Game Site that is joe robbie stadium? | CREATE TABLE table_name_3 (record VARCHAR, game_site VARCHAR) | SELECT record FROM table_name_3 WHERE game_site = "joe robbie stadium" |
What is the sum of Silver with a Bronze that is larger than 0 with a Gold smaller than 0? | CREATE TABLE table_name_26 (silver INTEGER, bronze VARCHAR, gold VARCHAR) | SELECT SUM(silver) FROM table_name_26 WHERE bronze > 0 AND gold < 0 |
What is the average Silver with a Total that is smaller than 1? | CREATE TABLE table_name_97 (silver INTEGER, total INTEGER) | SELECT AVG(silver) FROM table_name_97 WHERE total < 1 |
What is the lowest Rank with a Nation that is east germany? | CREATE TABLE table_name_43 (rank INTEGER, nation VARCHAR) | SELECT MIN(rank) FROM table_name_43 WHERE nation = "east germany" |
What is the total number of Established for soccer plated in kuntz stadium? | CREATE TABLE table_name_65 (established VARCHAR, sport VARCHAR, venue VARCHAR) | SELECT COUNT(established) FROM table_name_65 WHERE sport = "soccer" AND venue = "kuntz stadium" |
What is the Club that has an Established more than 2000 for soccer plated in kuntz stadium? | CREATE TABLE table_name_90 (club VARCHAR, venue VARCHAR, established VARCHAR, sport VARCHAR) | SELECT club FROM table_name_90 WHERE established > 2000 AND sport = "soccer" AND venue = "kuntz stadium" |
What is the highest Established for the kuntz stadium? | CREATE TABLE table_name_79 (established INTEGER, venue VARCHAR) | SELECT MAX(established) FROM table_name_79 WHERE venue = "kuntz stadium" |
What is the highest number of titles won by the Järve club before 2013? | CREATE TABLE table_name_9 (titles INTEGER, current_run_since VARCHAR, club VARCHAR) | SELECT MAX(titles) FROM table_name_9 WHERE current_run_since < 2013 AND club = "järve" |
What is the total number of losses against the Rajasthan Royals with more than 0 ties? | CREATE TABLE table_name_57 (lost VARCHAR, opposition VARCHAR, tied VARCHAR) | SELECT COUNT(lost) FROM table_name_57 WHERE opposition = "rajasthan royals" AND tied > 0 |
What is the average number of losses when there are more than 0 ties? | CREATE TABLE table_name_49 (lost INTEGER, tied INTEGER) | SELECT AVG(lost) FROM table_name_49 WHERE tied > 0 |
Which Location has a result of L 31-52? | CREATE TABLE table_name_67 (location VARCHAR, result VARCHAR) | SELECT location FROM table_name_67 WHERE result = "l 31-52" |
What is the mean number of goals when the rank's less than 8 and there are 261 matches? | CREATE TABLE table_name_88 (goals INTEGER, rank VARCHAR, matches VARCHAR) | SELECT AVG(goals) FROM table_name_88 WHERE rank < 8 AND matches = 261 |
Which years had a rank of more than 6 and involved Oleksandr Kosyrin? | CREATE TABLE table_name_7 (years VARCHAR, rank VARCHAR, name VARCHAR) | SELECT years FROM table_name_7 WHERE rank > 6 AND name = "oleksandr kosyrin" |
What is the Date when the label was alfa records, and a Catalog of alca-487? | CREATE TABLE table_name_61 (date VARCHAR, label VARCHAR, catalog VARCHAR) | SELECT date FROM table_name_61 WHERE label = "alfa records" AND catalog = "alca-487" |
What is the Format when Alfa records is the label, and there is a Catalog of alca-9016? | CREATE TABLE table_name_3 (format VARCHAR, label VARCHAR, catalog VARCHAR) | SELECT format FROM table_name_3 WHERE label = "alfa records" AND catalog = "alca-9016" |
What is the Region with a Catalog of alca-487? | CREATE TABLE table_name_89 (region VARCHAR, catalog VARCHAR) | SELECT region FROM table_name_89 WHERE catalog = "alca-487" |
What is the Catalog when the format is ed remaster cd, and a Label of village records, and a Date of march 13, 2002? | CREATE TABLE table_name_1 (catalog VARCHAR, date VARCHAR, format VARCHAR, label VARCHAR) | SELECT catalog FROM table_name_1 WHERE format = "ed remaster cd" AND label = "village records" AND date = "march 13, 2002" |
What is the Format for the alca-487 catalog? | CREATE TABLE table_name_12 (format VARCHAR, catalog VARCHAR) | SELECT format FROM table_name_12 WHERE catalog = "alca-487" |
What is the Format for the alfa records Label, and a Catalog of alca-9016? | CREATE TABLE table_name_81 (format VARCHAR, label VARCHAR, catalog VARCHAR) | SELECT format FROM table_name_81 WHERE label = "alfa records" AND catalog = "alca-9016" |
Which Rank has a Total of 1 and a Bronze larger than 0? | CREATE TABLE table_name_33 (rank INTEGER, total VARCHAR, bronze VARCHAR) | SELECT MAX(rank) FROM table_name_33 WHERE total = 1 AND bronze > 0 |
What kind of Silver has a Nation of norway and a Gold smaller than 3? | CREATE TABLE table_name_27 (silver INTEGER, nation VARCHAR, gold VARCHAR) | SELECT SUM(silver) FROM table_name_27 WHERE nation = "norway" AND gold < 3 |
Which Silver has a Total smaller than 2 and a Rank larger than 8 | CREATE TABLE table_name_58 (silver INTEGER, total VARCHAR, rank VARCHAR) | SELECT MIN(silver) FROM table_name_58 WHERE total < 2 AND rank > 8 |
What kind of Rank has a Bronze of 0 and a Total smaller than 3 and a Nation of austria? | CREATE TABLE table_name_6 (rank INTEGER, nation VARCHAR, bronze VARCHAR, total VARCHAR) | SELECT MAX(rank) FROM table_name_6 WHERE bronze = 0 AND total < 3 AND nation = "austria" |
What final score was there on October 8, 2006? | CREATE TABLE table_name_96 (score_in_the_final VARCHAR, date VARCHAR) | SELECT score_in_the_final FROM table_name_96 WHERE date = "october 8, 2006" |
Which final opponent's surface was hard (i) and participated on October 9, 2005? | CREATE TABLE table_name_26 (opponent_in_the_final VARCHAR, surface VARCHAR, date VARCHAR) | SELECT opponent_in_the_final FROM table_name_26 WHERE surface = "hard (i)" AND date = "october 9, 2005" |
Who was the opponent at the game with a result of W 13–12? | CREATE TABLE table_name_83 (opponent VARCHAR, result VARCHAR) | SELECT opponent FROM table_name_83 WHERE result = "w 13–12" |
What was the date of the game against the Chicago Bears? | CREATE TABLE table_name_90 (date VARCHAR, opponent VARCHAR) | SELECT date FROM table_name_90 WHERE opponent = "chicago bears" |
Which Entrant had the Bugatti T35B Chassis and the Driver, Heinrich-Joachim Von Morgen? | CREATE TABLE table_name_66 (entrant VARCHAR, chassis VARCHAR, driver VARCHAR) | SELECT entrant FROM table_name_66 WHERE chassis = "bugatti t35b" AND driver = "heinrich-joachim von morgen" |
What was the Engine, when the Chassis was Bugatti T51, and when the Entrant was a Private Entry? | CREATE TABLE table_name_1 (engine VARCHAR, chassis VARCHAR, entrant VARCHAR) | SELECT engine FROM table_name_1 WHERE chassis = "bugatti t51" AND entrant = "private entry" |
Who was the Driver, when the Chassis was Bugatti T51, and when the Entrant was Automobiles Ettore Bugatti? | CREATE TABLE table_name_87 (driver VARCHAR, chassis VARCHAR, entrant VARCHAR) | SELECT driver FROM table_name_87 WHERE chassis = "bugatti t51" AND entrant = "automobiles ettore bugatti" |
Who was the Driver, when the Engine was 7.1 l6, and when the Chassis was Mercedes-Benz SSK l? | CREATE TABLE table_name_3 (driver VARCHAR, engine VARCHAR, chassis VARCHAR) | SELECT driver FROM table_name_3 WHERE engine = "7.1 l6" AND chassis = "mercedes-benz ssk l" |
Can you tell me the sum of Draws that has the Against larger than 1106, and the Wins larger than 13? | CREATE TABLE table_name_44 (draws INTEGER, against VARCHAR, wins VARCHAR) | SELECT SUM(draws) FROM table_name_44 WHERE against > 1106 AND wins > 13 |
Can you tell me the lowest Wins that has the Ballarat FL of daylesford, and the Byes smaller than 1? | CREATE TABLE table_name_71 (wins INTEGER, ballarat_fl VARCHAR, byes VARCHAR) | SELECT MIN(wins) FROM table_name_71 WHERE ballarat_fl = "daylesford" AND byes < 1 |
Can you tell me the highest Against that has the Losses larger than 9, and the Byes of 2, and the Draws larger than 0? | CREATE TABLE table_name_56 (against INTEGER, draws VARCHAR, losses VARCHAR, byes VARCHAR) | SELECT MAX(against) FROM table_name_56 WHERE losses > 9 AND byes = 2 AND draws > 0 |
Can you tell me the sum of Draws that had the Wins smaller than 3, and the Byes larger than 2? | CREATE TABLE table_name_15 (draws INTEGER, wins VARCHAR, byes VARCHAR) | SELECT SUM(draws) FROM table_name_15 WHERE wins < 3 AND byes > 2 |
Which Yards has a Long smaller than 3? | CREATE TABLE table_name_2 (yards INTEGER, long INTEGER) | SELECT AVG(yards) FROM table_name_2 WHERE long < 3 |
What is Regulator, when Conduct of Litigation is Yes, and when Probate Activities is Yes? | CREATE TABLE table_name_13 (regulator VARCHAR, conduct_of_litigation VARCHAR, probate_activities VARCHAR) | SELECT regulator FROM table_name_13 WHERE conduct_of_litigation = "yes" AND probate_activities = "yes" |
What is Reserved Instruments, when Conduct of Litigation is Yes, and when Probate Activities is No? | CREATE TABLE table_name_95 (reserved_instruments VARCHAR, conduct_of_litigation VARCHAR, probate_activities VARCHAR) | SELECT reserved_instruments FROM table_name_95 WHERE conduct_of_litigation = "yes" AND probate_activities = "no" |
What is Administration of Oaths, when Rights of Audience is Yes, and when Reserved Instruments is Yes? | CREATE TABLE table_name_43 (administration_of_oaths VARCHAR, rights_of_audience VARCHAR, reserved_instruments VARCHAR) | SELECT administration_of_oaths FROM table_name_43 WHERE rights_of_audience = "yes" AND reserved_instruments = "yes" |
What is Reserved Instruments, when Conduct of Litigation is Yes, and when Probate Activities is Yes? | CREATE TABLE table_name_19 (reserved_instruments VARCHAR, conduct_of_litigation VARCHAR, probate_activities VARCHAR) | SELECT reserved_instruments FROM table_name_19 WHERE conduct_of_litigation = "yes" AND probate_activities = "yes" |
What is Probate Activities, when Reserved Instruments is No, and when Regulator is Chartered Institute of Legal Executives? | CREATE TABLE table_name_6 (probate_activities VARCHAR, reserved_instruments VARCHAR, regulator VARCHAR) | SELECT probate_activities FROM table_name_6 WHERE reserved_instruments = "no" AND regulator = "chartered institute of legal executives" |
What is Probate Activities, when Notarial Activities is No, when Conduct of Litigation is Yes, and when Regulator is Association of Law Costs Draftsmen? | CREATE TABLE table_name_16 (probate_activities VARCHAR, regulator VARCHAR, notarial_activities VARCHAR, conduct_of_litigation VARCHAR) | SELECT probate_activities FROM table_name_16 WHERE notarial_activities = "no" AND conduct_of_litigation = "yes" AND regulator = "association of law costs draftsmen" |
What is the highest attendance for the game after week 1 against the New York Jets? | CREATE TABLE table_name_87 (attendance INTEGER, week VARCHAR, opponent VARCHAR) | SELECT MAX(attendance) FROM table_name_87 WHERE week > 1 AND opponent = "new york jets" |
What is the average of player Matthew Elliott (vic)? | CREATE TABLE table_name_63 (average VARCHAR, player VARCHAR) | SELECT average FROM table_name_63 WHERE player = "matthew elliott (vic)" |
How many runs were ranked 4? | CREATE TABLE table_name_84 (runs VARCHAR, rank VARCHAR) | SELECT runs FROM table_name_84 WHERE rank = "4" |
Which formula has a refractive index 589.3 at 1.97? | CREATE TABLE table_name_63 (formula VARCHAR, refractive_index_es__5893nm VARCHAR) | SELECT formula FROM table_name_63 WHERE refractive_index_es__5893nm = "1.97" |
What is Country of Origin, when Type is Disposable, when Primary Cartridge is 105mm, and when Year of Intro is less than 2008? | CREATE TABLE table_name_74 (country_of_origin VARCHAR, year_of_intro VARCHAR, type VARCHAR, primary_cartridge VARCHAR) | SELECT country_of_origin FROM table_name_74 WHERE type = "disposable" AND primary_cartridge = "105mm" AND year_of_intro < 2008 |
What is Country of Origin, when Year of Intro is 1977? | CREATE TABLE table_name_10 (country_of_origin VARCHAR, year_of_intro VARCHAR) | SELECT country_of_origin FROM table_name_10 WHERE year_of_intro = 1977 |
What is Country of Origin, when Year of Intro is greater than 1985, and when Primary Cartridge is 125mm? | CREATE TABLE table_name_27 (country_of_origin VARCHAR, year_of_intro VARCHAR, primary_cartridge VARCHAR) | SELECT country_of_origin FROM table_name_27 WHERE year_of_intro > 1985 AND primary_cartridge = "125mm" |
What is the total number of Year of Intro(s), when Country of Origin is Soviet Union, when Type is Reusable, when Primary Cartridge is 40mm, and when Name/ Designation is RPG-29? | CREATE TABLE table_name_87 (year_of_intro VARCHAR, name__designation VARCHAR, primary_cartridge VARCHAR, country_of_origin VARCHAR, type VARCHAR) | SELECT COUNT(year_of_intro) FROM table_name_87 WHERE country_of_origin = "soviet union" AND type = "reusable" AND primary_cartridge = "40mm" AND name__designation = "rpg-29" |
Who was at Home at the Bucharest Venue with a Score of 9-9? | CREATE TABLE table_name_20 (home VARCHAR, venue VARCHAR, score VARCHAR) | SELECT home FROM table_name_20 WHERE venue = "bucharest" AND score = "9-9" |
What date were Romania at Home at the Bucharest Venue with a Score of 13-19? | CREATE TABLE table_name_80 (date VARCHAR, score VARCHAR, home VARCHAR, venue VARCHAR) | SELECT date FROM table_name_80 WHERE home = "romania" AND venue = "bucharest" AND score = "13-19" |
Who was at Home when the Score was 13-19? | CREATE TABLE table_name_83 (home VARCHAR, score VARCHAR) | SELECT home FROM table_name_83 WHERE score = "13-19" |
What draw average has a televote less than 633 and Vilma Voroblevaitė as artist and the place is greater than 14? | CREATE TABLE table_name_68 (draw INTEGER, place VARCHAR, televote VARCHAR, artist VARCHAR) | SELECT AVG(draw) FROM table_name_68 WHERE televote < 633 AND artist = "vilma voroblevaitė" AND place > 14 |
Artist Justinas Lapatinskas with a draw of greater than 9 got what as the highest televote? | CREATE TABLE table_name_64 (televote INTEGER, artist VARCHAR, draw VARCHAR) | SELECT MAX(televote) FROM table_name_64 WHERE artist = "justinas lapatinskas" AND draw > 9 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.