question stringlengths 12 244 | context stringlengths 27 489 | answer dict |
|---|---|---|
In rounds 7-13 what engine was featured? | CREATE TABLE table_name_58 (engine VARCHAR, rounds VARCHAR) | {
"SQL_Query": "SELECT engine FROM table_name_58 WHERE rounds = \"7-13\""
} |
What score was conceded by Richmond? | CREATE TABLE table_name_94 (away_team VARCHAR, home_team VARCHAR) | {
"SQL_Query": "SELECT away_team AS score FROM table_name_94 WHERE home_team = \"richmond\""
} |
What is the number of Goals on 1950-05-30? | CREATE TABLE table_name_63 (goals VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT COUNT(goals) FROM table_name_63 WHERE date = \"1950-05-30\""
} |
In 1948-10-28, what were the lowest Goals in Tehran, Iran? | CREATE TABLE table_name_75 (goals INTEGER, venue VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT MIN(goals) FROM table_name_75 WHERE venue = \"tehran, iran\" AND date = \"1948-10-28\""
} |
In what Venue was the Result 1-3? | CREATE TABLE table_name_16 (venue VARCHAR, result VARCHAR) | {
"SQL_Query": "SELECT venue FROM table_name_16 WHERE result = \"1-3\""
} |
In 1948-10-28, in what Venue was the Competition of International Match held? | CREATE TABLE table_name_26 (venue VARCHAR, competition VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT venue FROM table_name_26 WHERE competition = \"international match\" AND date = \"1948-10-28\""
} |
What was the Zakspeed 1500/4 1.5 l4 t chassis? | CREATE TABLE table_name_42 (chassis VARCHAR, engine VARCHAR) | {
"SQL_Query": "SELECT chassis FROM table_name_42 WHERE engine = \"zakspeed 1500/4 1.5 l4 t\""
} |
What was the Michele Alboreto's engine? | CREATE TABLE table_name_22 (engine VARCHAR, driver VARCHAR) | {
"SQL_Query": "SELECT engine FROM table_name_22 WHERE driver = \"michele alboreto\""
} |
What is the average rank for antun salman? | CREATE TABLE table_name_26 (rank INTEGER, candidate_name VARCHAR) | {
"SQL_Query": "SELECT AVG(rank) FROM table_name_26 WHERE candidate_name = \"antun salman\""
} |
Khalil chawka has a gender of ♂, a religion of ☪, and how many votes? | CREATE TABLE table_name_55 (votes VARCHAR, candidate_name VARCHAR, gender VARCHAR, religion VARCHAR) | {
"SQL_Query": "SELECT votes FROM table_name_55 WHERE gender = \"♂\" AND religion = \"☪\" AND candidate_name = \"khalil chawka\""
} |
Who has a religion of ☪ and more than 1853 votes? | CREATE TABLE table_name_66 (candidate_name VARCHAR, votes VARCHAR, religion VARCHAR) | {
"SQL_Query": "SELECT candidate_name FROM table_name_66 WHERE votes > 1853 AND religion = \"☪\""
} |
What is the recorder has a Track more than 11 with a time 3:06 | CREATE TABLE table_name_77 (recorded VARCHAR, track VARCHAR, time VARCHAR) | {
"SQL_Query": "SELECT recorded FROM table_name_77 WHERE track > 11 AND time = \"3:06\""
} |
Which track has a title : Just a little bit | CREATE TABLE table_name_64 (track INTEGER, song_title VARCHAR) | {
"SQL_Query": "SELECT MIN(track) FROM table_name_64 WHERE song_title = \"just a little bit\""
} |
What is the Trophy with a Season with 2008–2009? | CREATE TABLE table_name_78 (trophy VARCHAR, season VARCHAR) | {
"SQL_Query": "SELECT trophy FROM table_name_78 WHERE season = \"2008–2009\""
} |
What Wasatch time corresponds to a total time of 122:13:40? | CREATE TABLE table_name_31 (wasatch VARCHAR, total_time VARCHAR) | {
"SQL_Query": "SELECT wasatch FROM table_name_31 WHERE total_time = \"122:13:40\""
} |
Who were the opponents in the final on 9 January 1994? | CREATE TABLE table_name_29 (opponents_in_final VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT opponents_in_final FROM table_name_29 WHERE date = \"9 january 1994\""
} |
Who was Melbourne's home team opponent? | CREATE TABLE table_name_90 (home_team VARCHAR, away_team VARCHAR) | {
"SQL_Query": "SELECT home_team FROM table_name_90 WHERE away_team = \"melbourne\""
} |
Who was Richmond's away team opponent? | CREATE TABLE table_name_10 (away_team VARCHAR, home_team VARCHAR) | {
"SQL_Query": "SELECT away_team FROM table_name_10 WHERE home_team = \"richmond\""
} |
What is the smallest value for League Cup when the League number is greater than 1, no FA Cups, and Brian Deane scoring? | CREATE TABLE table_name_88 (league INTEGER, fa_cup VARCHAR, name VARCHAR) | {
"SQL_Query": "SELECT MIN(league) AS Cup FROM table_name_88 WHERE league > 1 AND name = \"brian deane\" AND fa_cup < 1"
} |
Name the region before 2008 when name of best 1200 | CREATE TABLE table_name_58 (region VARCHAR, year VARCHAR, name VARCHAR) | {
"SQL_Query": "SELECT region FROM table_name_58 WHERE year < 2008 AND name = \"best 1200\""
} |
What method resulted in a win and a time of 4:36? | CREATE TABLE table_name_44 (method VARCHAR, res VARCHAR, time VARCHAR) | {
"SQL_Query": "SELECT method FROM table_name_44 WHERE res = \"win\" AND time = \"4:36\""
} |
At what venue did the Essendon team play as an away team? | CREATE TABLE table_name_92 (venue VARCHAR, away_team VARCHAR) | {
"SQL_Query": "SELECT venue FROM table_name_92 WHERE away_team = \"essendon\""
} |
Who was the home team for the game played at Junction Oval? | CREATE TABLE table_name_98 (home_team VARCHAR, venue VARCHAR) | {
"SQL_Query": "SELECT home_team FROM table_name_98 WHERE venue = \"junction oval\""
} |
What was the score of the home team when the away team was Geelong? | CREATE TABLE table_name_59 (home_team VARCHAR, away_team VARCHAR) | {
"SQL_Query": "SELECT home_team AS score FROM table_name_59 WHERE away_team = \"geelong\""
} |
What was the away team when the home team was South Melbourne? | CREATE TABLE table_name_77 (away_team VARCHAR, home_team VARCHAR) | {
"SQL_Query": "SELECT away_team FROM table_name_77 WHERE home_team = \"south melbourne\""
} |
What was the name of the home team playing at the Junction Oval venue? | CREATE TABLE table_name_10 (home_team VARCHAR, venue VARCHAR) | {
"SQL_Query": "SELECT home_team FROM table_name_10 WHERE venue = \"junction oval\""
} |
What is the total number of the established club of Lehigh Valley Storm? | CREATE TABLE table_name_86 (established VARCHAR, club VARCHAR) | {
"SQL_Query": "SELECT COUNT(established) FROM table_name_86 WHERE club = \"lehigh valley storm\""
} |
What is the name of a league in the sport of baseball? | CREATE TABLE table_name_96 (league VARCHAR, sport VARCHAR) | {
"SQL_Query": "SELECT league FROM table_name_96 WHERE sport = \"baseball\""
} |
What venue does the soccer team Pennsylvania Stoners play in? | CREATE TABLE table_name_55 (venue VARCHAR, sport VARCHAR, club VARCHAR) | {
"SQL_Query": "SELECT venue FROM table_name_55 WHERE sport = \"soccer\" AND club = \"pennsylvania stoners\""
} |
What game number was played on March 4? | CREATE TABLE table_name_67 (game__number INTEGER, date VARCHAR) | {
"SQL_Query": "SELECT AVG(game__number) FROM table_name_67 WHERE date = \"march 4\""
} |
What is the record when the visitor is Buffalo? | CREATE TABLE table_name_69 (record VARCHAR, visitor VARCHAR) | {
"SQL_Query": "SELECT record FROM table_name_69 WHERE visitor = \"buffalo\""
} |
Tell me the number of attendance that has a result of l 35-17 | CREATE TABLE table_name_4 (attendance VARCHAR, result VARCHAR) | {
"SQL_Query": "SELECT COUNT(attendance) FROM table_name_4 WHERE result = \"l 35-17\""
} |
I want the attendance for week larger than 10 and result of l 22-21 | CREATE TABLE table_name_60 (attendance VARCHAR, week VARCHAR, result VARCHAR) | {
"SQL_Query": "SELECT attendance FROM table_name_60 WHERE week > 10 AND result = \"l 22-21\""
} |
Name for me the total number in attendance for week before 2 and result of t 24-24 | CREATE TABLE table_name_60 (attendance VARCHAR, result VARCHAR, week VARCHAR) | {
"SQL_Query": "SELECT COUNT(attendance) FROM table_name_60 WHERE result = \"t 24-24\" AND week < 2"
} |
I want the greatest attendance when the opponent is the chicago bears | CREATE TABLE table_name_64 (attendance INTEGER, opponent VARCHAR) | {
"SQL_Query": "SELECT MAX(attendance) FROM table_name_64 WHERE opponent = \"chicago bears\""
} |
What is the average attendance for a game against Phoenix? | CREATE TABLE table_name_16 (attendance INTEGER, visitor VARCHAR) | {
"SQL_Query": "SELECT AVG(attendance) FROM table_name_16 WHERE visitor = \"phoenix\""
} |
What was the home team in the February 22 game that Legace played in for the St. Louis Blues? | CREATE TABLE table_name_78 (home VARCHAR, date VARCHAR, decision VARCHAR, visitor VARCHAR) | {
"SQL_Query": "SELECT home FROM table_name_78 WHERE decision = \"legace\" AND visitor = \"st. louis\" AND date = \"february 22\""
} |
Who was Carlton's home team opponent? | CREATE TABLE table_name_65 (home_team VARCHAR, away_team VARCHAR) | {
"SQL_Query": "SELECT home_team FROM table_name_65 WHERE away_team = \"carlton\""
} |
Who was the away team at Lake Oval? | CREATE TABLE table_name_68 (away_team VARCHAR, venue VARCHAR) | {
"SQL_Query": "SELECT away_team AS score FROM table_name_68 WHERE venue = \"lake oval\""
} |
Who was South Melbourne's away team opponent? | CREATE TABLE table_name_8 (away_team VARCHAR, home_team VARCHAR) | {
"SQL_Query": "SELECT away_team FROM table_name_8 WHERE home_team = \"south melbourne\""
} |
What is the high grid with 27 laps? | CREATE TABLE table_name_89 (grid INTEGER, laps VARCHAR) | {
"SQL_Query": "SELECT MAX(grid) FROM table_name_89 WHERE laps = 27"
} |
What is the high grid that has a Time/Retired of +6 laps, and under 69 laps? | CREATE TABLE table_name_4 (grid INTEGER, time_retired VARCHAR, laps VARCHAR) | {
"SQL_Query": "SELECT MAX(grid) FROM table_name_4 WHERE time_retired = \"+6 laps\" AND laps < 69"
} |
What's the total number of copies sold for the single that sold 206,030 in the first week? | CREATE TABLE table_name_43 (copies_sold VARCHAR, first_week_sales VARCHAR) | {
"SQL_Query": "SELECT COUNT(copies_sold) FROM table_name_43 WHERE first_week_sales = 206 OFFSET 030"
} |
What was the latest release date for Ariola in Spain? | CREATE TABLE table_name_3 (release_date INTEGER, label VARCHAR, country VARCHAR) | {
"SQL_Query": "SELECT MAX(release_date) FROM table_name_3 WHERE label = \"ariola\" AND country = \"spain\""
} |
What type of format was released after 1979? | CREATE TABLE table_name_48 (release_format VARCHAR, release_date INTEGER) | {
"SQL_Query": "SELECT release_format FROM table_name_48 WHERE release_date > 1979"
} |
On what date did Epic label start its release? | CREATE TABLE table_name_3 (release_date INTEGER, label VARCHAR) | {
"SQL_Query": "SELECT SUM(release_date) FROM table_name_3 WHERE label = \"epic\""
} |
Which game had less than 270 rebounds and a rank lower than 5? | CREATE TABLE table_name_36 (games VARCHAR, rebounds VARCHAR, rank VARCHAR) | {
"SQL_Query": "SELECT games FROM table_name_36 WHERE rebounds < 270 AND rank < 5"
} |
Which game did Curtis Borchardt play with more than 274 rebounds? | CREATE TABLE table_name_20 (games INTEGER, name VARCHAR, rebounds VARCHAR) | {
"SQL_Query": "SELECT SUM(games) FROM table_name_20 WHERE name = \"curtis borchardt\" AND rebounds > 274"
} |
In game 34 Curtis Borchardt played on which team with less than 275 rebounds? | CREATE TABLE table_name_70 (team VARCHAR, name VARCHAR, rebounds VARCHAR, games VARCHAR) | {
"SQL_Query": "SELECT team FROM table_name_70 WHERE rebounds < 275 AND games < 34 AND name = \"curtis borchardt\""
} |
How many rebounds occurred in a rank 4 game? | CREATE TABLE table_name_73 (rebounds VARCHAR, rank VARCHAR) | {
"SQL_Query": "SELECT rebounds FROM table_name_73 WHERE rank = 4"
} |
Which game did was Bud Eley a player in? | CREATE TABLE table_name_88 (games VARCHAR, name VARCHAR) | {
"SQL_Query": "SELECT games FROM table_name_88 WHERE name = \"bud eley\""
} |
Which game did Bruesa GBC play in with fewer than 275 rebounds that is ranked less than 4? | CREATE TABLE table_name_80 (games INTEGER, team VARCHAR, rank VARCHAR, rebounds VARCHAR) | {
"SQL_Query": "SELECT SUM(games) FROM table_name_80 WHERE rank < 4 AND rebounds < 275 AND team = \"bruesa gbc\""
} |
What is the grid for johnny herbert? | CREATE TABLE table_name_6 (grid VARCHAR, driver VARCHAR) | {
"SQL_Query": "SELECT grid FROM table_name_6 WHERE driver = \"johnny herbert\""
} |
Tell me the average rank for dharma productions before 2013 | CREATE TABLE table_name_43 (rank INTEGER, studio_s_ VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT AVG(rank) FROM table_name_43 WHERE studio_s_ = \"dharma productions\" AND year < 2013"
} |
Name the average year for 4 rank | CREATE TABLE table_name_33 (year INTEGER, rank VARCHAR) | {
"SQL_Query": "SELECT AVG(year) FROM table_name_33 WHERE rank = 4"
} |
Name the lowest rank for red chillies entertainment for 2013 | CREATE TABLE table_name_99 (rank INTEGER, year VARCHAR, studio_s_ VARCHAR) | {
"SQL_Query": "SELECT MIN(rank) FROM table_name_99 WHERE year = 2013 AND studio_s_ = \"red chillies entertainment\""
} |
Which date did richmond play as away? | CREATE TABLE table_name_27 (date VARCHAR, away_team VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_27 WHERE away_team = \"richmond\""
} |
What is the rank for the player with 5 wins and under 32 events? | CREATE TABLE table_name_52 (rank INTEGER, wins VARCHAR, events VARCHAR) | {
"SQL_Query": "SELECT SUM(rank) FROM table_name_52 WHERE wins = 5 AND events < 32"
} |
What is the issue price of a Year 2000 coin by artist John Mardon of the Included in Steam Buggy mintage. | CREATE TABLE table_name_46 (issue_price VARCHAR, mintage VARCHAR, artist VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT issue_price FROM table_name_46 WHERE artist = \"john mardon\" AND year = 2000 AND mintage = \"included in steam buggy\""
} |
What is the theme of the Year 2002 which was created by Artist Dan Fell? | CREATE TABLE table_name_86 (theme VARCHAR, year VARCHAR, artist VARCHAR) | {
"SQL_Query": "SELECT theme FROM table_name_86 WHERE year = 2002 AND artist = \"dan fell\""
} |
What artist had a mintage of 41,828 before year 2002? | CREATE TABLE table_name_81 (artist VARCHAR, year VARCHAR, mintage VARCHAR) | {
"SQL_Query": "SELECT artist FROM table_name_81 WHERE year < 2002 AND mintage = \"41,828\""
} |
A mintage of 31,997 has what issue price? | CREATE TABLE table_name_36 (issue_price VARCHAR, mintage VARCHAR) | {
"SQL_Query": "SELECT issue_price FROM table_name_36 WHERE mintage = \"31,997\""
} |
Tell me the control trailers for 52 motors | CREATE TABLE table_name_71 (Control VARCHAR, motors VARCHAR) | {
"SQL_Query": "SELECT Control AS trailers FROM table_name_71 WHERE motors = \"52\""
} |
I want the trailers for 1931 and builder of mccw | CREATE TABLE table_name_48 (trailers VARCHAR, year VARCHAR, builder VARCHAR) | {
"SQL_Query": "SELECT trailers FROM table_name_48 WHERE year = \"1931\" AND builder = \"mccw\""
} |
I want the control trailers for 1931 with builder of grcw | CREATE TABLE table_name_45 (Control VARCHAR, year VARCHAR, builder VARCHAR) | {
"SQL_Query": "SELECT Control AS trailers FROM table_name_45 WHERE year = \"1931\" AND builder = \"grcw\""
} |
I want the trailers for motors of 145 | CREATE TABLE table_name_92 (trailers VARCHAR, motors VARCHAR) | {
"SQL_Query": "SELECT trailers FROM table_name_92 WHERE motors = \"145\""
} |
Tell me the sum of wins for top 5 less than 1 | CREATE TABLE table_name_77 (wins INTEGER, top_5 INTEGER) | {
"SQL_Query": "SELECT SUM(wins) FROM table_name_77 WHERE top_5 < 1"
} |
I want the average events for top 10 less than 4 | CREATE TABLE table_name_17 (events INTEGER, top_10 INTEGER) | {
"SQL_Query": "SELECT AVG(events) FROM table_name_17 WHERE top_10 < 4"
} |
Name the highest cuts made when top 5 is less than 3 and top ten is more than 4 | CREATE TABLE table_name_99 (cuts_made INTEGER, top_5 VARCHAR, top_10 VARCHAR) | {
"SQL_Query": "SELECT MAX(cuts_made) FROM table_name_99 WHERE top_5 < 3 AND top_10 > 4"
} |
I want the most top 25 when events are more than 20 and top 10 is more than 21 | CREATE TABLE table_name_84 (top_25 INTEGER, events VARCHAR, top_10 VARCHAR) | {
"SQL_Query": "SELECT MAX(top_25) FROM table_name_84 WHERE events > 20 AND top_10 > 21"
} |
What was the Attendance on April 28? | CREATE TABLE table_name_40 (attendance INTEGER, date VARCHAR) | {
"SQL_Query": "SELECT SUM(attendance) FROM table_name_40 WHERE date = \"april 28\""
} |
What was escape to river cottage released? | CREATE TABLE table_name_64 (released VARCHAR, dvd_name VARCHAR) | {
"SQL_Query": "SELECT released FROM table_name_64 WHERE dvd_name = \"escape to river cottage\""
} |
What DVD has a time of 2 hours 22 minutes? | CREATE TABLE table_name_61 (dvd_name VARCHAR, duration VARCHAR) | {
"SQL_Query": "SELECT dvd_name FROM table_name_61 WHERE duration = \"2 hours 22 minutes\""
} |
What was the date for the game in week 7? | CREATE TABLE table_name_14 (date VARCHAR, week VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_14 WHERE week = 7"
} |
On what date was the attendance of the crowd 78,431? | CREATE TABLE table_name_54 (date VARCHAR, attendance VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_54 WHERE attendance = \"78,431\""
} |
What was the date of the Capitals game when Columbus was the home team? | CREATE TABLE table_name_28 (date VARCHAR, home VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_28 WHERE home = \"columbus\""
} |
The 2002 African Cup of Nations was held on what date? | CREATE TABLE table_name_20 (date VARCHAR, competition VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_20 WHERE competition = \"2002 african cup of nations\""
} |
Which competition took place at Stade Fernand Fournier, Arles? | CREATE TABLE table_name_51 (competition VARCHAR, venue VARCHAR) | {
"SQL_Query": "SELECT competition FROM table_name_51 WHERE venue = \"stade fernand fournier, arles\""
} |
What was the attendance of the game where fitzroy was the away team? | CREATE TABLE table_name_83 (crowd VARCHAR, away_team VARCHAR) | {
"SQL_Query": "SELECT COUNT(crowd) FROM table_name_83 WHERE away_team = \"fitzroy\""
} |
Which artist created the silver dollar for the 400th anniversary of Quebec? | CREATE TABLE table_name_80 (artist VARCHAR, theme VARCHAR) | {
"SQL_Query": "SELECT artist FROM table_name_80 WHERE theme = \"400th anniversary of quebec\""
} |
Which year did the Royal Canadian Mint Staff create a silver dollar? | CREATE TABLE table_name_25 (year VARCHAR, artist VARCHAR) | {
"SQL_Query": "SELECT year FROM table_name_25 WHERE artist = \"royal canadian mint staff\""
} |
How many coins by Suzanne Duranceau were minted? | CREATE TABLE table_name_93 (mintage VARCHAR, artist VARCHAR) | {
"SQL_Query": "SELECT mintage FROM table_name_93 WHERE artist = \"suzanne duranceau\""
} |
What was the method for the resolution of nc where the fight lasted less than 3 rounds? | CREATE TABLE table_name_72 (method VARCHAR, round VARCHAR, res VARCHAR) | {
"SQL_Query": "SELECT method FROM table_name_72 WHERE round < 3 AND res = \"nc\""
} |
Who was the opponent during the UFC 90 event with a fight that lasted less than 4 rounds? | CREATE TABLE table_name_95 (opponent VARCHAR, round VARCHAR, event VARCHAR) | {
"SQL_Query": "SELECT opponent FROM table_name_95 WHERE round < 4 AND event = \"ufc 90\""
} |
What was the method for the resolution of the fight at UFC 160? | CREATE TABLE table_name_33 (method VARCHAR, event VARCHAR) | {
"SQL_Query": "SELECT method FROM table_name_33 WHERE event = \"ufc 160\""
} |
What is the league on 5 October 1997? | CREATE TABLE table_name_48 (league VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT league FROM table_name_48 WHERE date = \"5 october 1997\""
} |
Which season was on 30 October 1977? | CREATE TABLE table_name_50 (season VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT season FROM table_name_50 WHERE date = \"30 october 1977\""
} |
What season had the Roma-Napoli match on 12 September 1993? | CREATE TABLE table_name_1 (season VARCHAR, match VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT season FROM table_name_1 WHERE match = \"roma-napoli\" AND date = \"12 september 1993\""
} |
What club/province for the player with over 18 caps and plays the fly-half? | CREATE TABLE table_name_28 (club_province VARCHAR, caps VARCHAR, position VARCHAR) | {
"SQL_Query": "SELECT club_province FROM table_name_28 WHERE caps > 18 AND position = \"fly-half\""
} |
What driver has less than 18 laps and a grid number under 16? | CREATE TABLE table_name_14 (driver VARCHAR, laps VARCHAR, grid VARCHAR) | {
"SQL_Query": "SELECT driver FROM table_name_14 WHERE laps < 18 AND grid < 16"
} |
Who constructed the car with laps more than 70 and a time/retired of +12.535? | CREATE TABLE table_name_5 (constructor VARCHAR, laps VARCHAR, time_retired VARCHAR) | {
"SQL_Query": "SELECT constructor FROM table_name_5 WHERE laps > 70 AND time_retired = \"+12.535\""
} |
What was Alexander Wurz's highest laps when he has a grid less than 14 and a time/retired of +1 lap. | CREATE TABLE table_name_52 (laps INTEGER, grid VARCHAR, time_retired VARCHAR, driver VARCHAR) | {
"SQL_Query": "SELECT MAX(laps) FROM table_name_52 WHERE time_retired = \"+1 lap\" AND driver = \"alexander wurz\" AND grid < 14"
} |
Who was Footscray's opponent on June 15th of 1968? | CREATE TABLE table_name_54 (home_team VARCHAR, away_team VARCHAR) | {
"SQL_Query": "SELECT home_team FROM table_name_54 WHERE away_team = \"footscray\""
} |
What was the most recent year that a team located in Highland Township and a member of the West Division joined the Kensington Lakes Activities Association? | CREATE TABLE table_name_43 (joined INTEGER, division VARCHAR, location VARCHAR) | {
"SQL_Query": "SELECT MAX(joined) FROM table_name_43 WHERE division = \"west\" AND location = \"highland township\""
} |
What was the pole position for the belgian grand prix? | CREATE TABLE table_name_87 (pole_position VARCHAR, race VARCHAR) | {
"SQL_Query": "SELECT pole_position FROM table_name_87 WHERE race = \"belgian grand prix\""
} |
Who won the australian grand prix? | CREATE TABLE table_name_53 (race VARCHAR) | {
"SQL_Query": "SELECT race AS Winner FROM table_name_53 WHERE race = \"australian grand prix\""
} |
What was the pole position for jerez? | CREATE TABLE table_name_39 (pole_position VARCHAR, location VARCHAR) | {
"SQL_Query": "SELECT pole_position FROM table_name_39 WHERE location = \"jerez\""
} |
What is the enzyme involved in the disorder of Ornithine Transcarbamylase deficiency? | CREATE TABLE table_name_66 (enzyme VARCHAR, disorder VARCHAR) | {
"SQL_Query": "SELECT enzyme FROM table_name_66 WHERE disorder = \"ornithine transcarbamylase deficiency\""
} |
What lab measurements can help diagnosie ornithine transcarbamylase deficiency? | CREATE TABLE table_name_15 (measurements VARCHAR, disorder VARCHAR) | {
"SQL_Query": "SELECT measurements FROM table_name_15 WHERE disorder = \"ornithine transcarbamylase deficiency\""
} |
What is the abbreviation of the enzyme involved in carbamoyl phosphate synthetase i deficiency? | CREATE TABLE table_name_30 (abb VARCHAR, disorder VARCHAR) | {
"SQL_Query": "SELECT abb FROM table_name_30 WHERE disorder = \"carbamoyl phosphate synthetase i deficiency\""
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.