answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT date FROM table_name_17 WHERE venue = "victoria park"
When did the VFL pay at Victoria Park?
CREATE TABLE table_name_17 (date VARCHAR, venue VARCHAR)
SELECT viewers__millions_ FROM table_25664518_3 WHERE fourth_couple = "Tony and Jamie"
What was the number of viewers for the episode having a fourth couple of Tony and Jamie?
CREATE TABLE table_25664518_3 (viewers__millions_ VARCHAR, fourth_couple VARCHAR)
SELECT MIN(no_in_series) FROM table_29585196_1 WHERE directed_by = "Winrich Kolbe"
What episode number in the series was directed by Winrich Kolbe?
CREATE TABLE table_29585196_1 (no_in_series INTEGER, directed_by VARCHAR)
SELECT trainer FROM table_name_71 WHERE year = 2013
Who was the trainer in 2013?
CREATE TABLE table_name_71 (trainer VARCHAR, year VARCHAR)
SELECT aggregate FROM table_name_58 WHERE club = "crvena zvezda"
The Crvena Zvezda club has what aggregate?
CREATE TABLE table_name_58 (aggregate VARCHAR, club VARCHAR)
SELECT team FROM table_13619053_9 WHERE date = "April 1"
Which team played on April 1?
CREATE TABLE table_13619053_9 (team VARCHAR, date VARCHAR)
SELECT host FROM table_name_18 WHERE premiere = "november 10, 2007"
Who was the host of the premiere on November 10, 2007?
CREATE TABLE table_name_18 (host VARCHAR, premiere VARCHAR)
SELECT SUM(byes) FROM table_name_63 WHERE wins = 11 AND losses < 5
How many byes when there are 11 wins and fewer than 5 losses?
CREATE TABLE table_name_63 (byes INTEGER, wins VARCHAR, losses VARCHAR)
SELECT high_points FROM table_name_42 WHERE date = "june 8"
who had the high points on june 8?
CREATE TABLE table_name_42 (high_points VARCHAR, date VARCHAR)
SELECT COUNT(rank) FROM table_27155990_1 WHERE project_name = "Pebble: E-Paper Watch for iPhone and Android"
Project Name Pebble: E-Paper Watch for Iphone and Android was ranked how many times?
CREATE TABLE table_27155990_1 (rank VARCHAR, project_name VARCHAR)
SELECT runner_up FROM table_name_43 WHERE tier = "tier ii" AND winner = "gigi fernández natalia zvereva 5–7, 6–1, 6–4"
What is the Runner-up with the tier was tier ii, and a Winner of gigi fernández natalia zvereva 5–7, 6–1, 6–4?
CREATE TABLE table_name_43 (runner_up VARCHAR, tier VARCHAR, winner VARCHAR)
SELECT COUNT(round) FROM table_name_22 WHERE method = "tko (punches)" AND time = "0:40"
what is the total number of rounds when method is tko (punches) and time is 0:40?
CREATE TABLE table_name_22 (round VARCHAR, method VARCHAR, time VARCHAR)
SELECT opponents_in_the_final FROM table_name_38 WHERE partner = "frederik nielsen"
Who is Partner Frederik Nielsen's Opponents in the final?
CREATE TABLE table_name_38 (opponents_in_the_final VARCHAR, partner VARCHAR)
SELECT score FROM table_name_90 WHERE decision = "niittymaki" AND home = "carolina"
What was the score in the game where Carolina was the home team and Niittymaki received the decision?
CREATE TABLE table_name_90 (score VARCHAR, decision VARCHAR, home VARCHAR)
SELECT region FROM table_name_93 WHERE date = "january 1974"
What region goes along with January 1974?
CREATE TABLE table_name_93 (region VARCHAR, date VARCHAR)
SELECT T1.name, T3.balance + T2.balance FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid JOIN savings AS T3 ON T1.custid = T3.custid WHERE T3.balance < T2.balance
Find the name and total checking and savings balance of the accounts whose savings balance is lower than corresponding checking balance.
CREATE TABLE checking (balance INTEGER, custid VARCHAR); CREATE TABLE savings (balance INTEGER, custid VARCHAR); CREATE TABLE accounts (name VARCHAR, custid VARCHAR)
SELECT position FROM table_name_23 WHERE jersey_number_s_ = 40
Which position was played by the player wearing jersey number 40?
CREATE TABLE table_name_23 (position VARCHAR, jersey_number_s_ VARCHAR)
SELECT T1.Name FROM Tourist_Attractions AS T1 JOIN VISITORS AS T2 JOIN VISITS AS T3 ON T1.Tourist_Attraction_ID = T3.Tourist_Attraction_ID AND T2.Tourist_ID = T3.Tourist_ID WHERE T2.Tourist_Details = "Alison" EXCEPT SELECT T1.Name FROM Tourist_Attractions AS T1 JOIN VISITORS AS T2 JOIN VISITS AS T3 ON T1.Tourist_Attraction_ID = T3.Tourist_Attraction_ID AND T2.Tourist_ID = T3.Tourist_ID WHERE T2.Tourist_Details = "Rosalind"
What are the names of tourist attraction that Alison visited but Rosalind did not visit?
CREATE TABLE VISITS (Tourist_Attraction_ID VARCHAR, Tourist_ID VARCHAR); CREATE TABLE VISITORS (Tourist_Details VARCHAR, Tourist_ID VARCHAR); CREATE TABLE Tourist_Attractions (Name VARCHAR, Tourist_Attraction_ID VARCHAR)
SELECT district FROM table_name_92 WHERE incumbent = "sanford bishop"
Which district has an incumbent of Sanford Bishop?
CREATE TABLE table_name_92 (district VARCHAR, incumbent VARCHAR)
SELECT country FROM table_name_42 WHERE place = "t4" AND score = 66 - 73 = 139
Which country had a t4 place and scored 66-73=139?
CREATE TABLE table_name_42 (country VARCHAR, place VARCHAR, score VARCHAR)
SELECT date FROM table_name_3 WHERE distance = "500 m"
Which Date has a Distance of 500 m?
CREATE TABLE table_name_3 (date VARCHAR, distance VARCHAR)
SELECT intro_date FROM table_29778616_1 WHERE throughput = "16 Mbit/s"
What is the intro date for the throughput of 16 mbit/s?
CREATE TABLE table_29778616_1 (intro_date VARCHAR, throughput VARCHAR)
SELECT AVG(grid) FROM table_name_3 WHERE constructor = "vanwall" AND laps = 17
What was the average grid at the time Vanwall was constructor and there were 17 laps?
CREATE TABLE table_name_3 (grid INTEGER, constructor VARCHAR, laps VARCHAR)
SELECT MIN(week) FROM table_name_62 WHERE game_site = "ford field"
What was the earliest week the Titans played at Ford Field?
CREATE TABLE table_name_62 (week INTEGER, game_site VARCHAR)
SELECT SUM(losses) FROM table_name_23 WHERE win__percentage = "71.43%" AND no_result > 0
What is the number of losses for the game with a win % of 71.43%, and No Result is more than 0?
CREATE TABLE table_name_23 (losses INTEGER, win__percentage VARCHAR, no_result VARCHAR)
SELECT 1 AS st_runner_up FROM table_29942205_1 WHERE country_territory = "Philippines"
How many women has got the first runner-up position in representation of Philippines?
CREATE TABLE table_29942205_1 (country_territory VARCHAR)
SELECT hp_model FROM table_name_68 WHERE _number_hdd = 1 AND sides = "ds"
I want to know the HP model with a #HDD of 1 of sides of ds
CREATE TABLE table_name_68 (hp_model VARCHAR, _number_hdd VARCHAR, sides VARCHAR)
SELECT T2.Name, COUNT(*) FROM course_arrange AS T1 JOIN teacher AS T2 ON T1.Teacher_ID = T2.Teacher_ID GROUP BY T2.Name
Show names of teachers and the number of courses they teach.
CREATE TABLE teacher (Name VARCHAR, Teacher_ID VARCHAR); CREATE TABLE course_arrange (Teacher_ID VARCHAR)
SELECT status FROM table_name_96 WHERE name = "prenocephale"
What is the status of Prenocephale?
CREATE TABLE table_name_96 (status VARCHAR, name VARCHAR)
SELECT result FROM table_name_66 WHERE date = "december 15, 2002"
What was the result of the December 15, 2002 game?
CREATE TABLE table_name_66 (result VARCHAR, date VARCHAR)
SELECT nominated FROM table_name_60 WHERE award = "capif award"
Name the performance nominated for a Capif Award.
CREATE TABLE table_name_60 (nominated VARCHAR, award VARCHAR)
SELECT visitor FROM table_name_59 WHERE date = "march 27"
Who was the visitor on March 27?
CREATE TABLE table_name_59 (visitor VARCHAR, date VARCHAR)
SELECT country FROM table_15909409_2 WHERE agricultural_use__m_3__p_yr__in__percentage_ = "2040(93%)"
What are the countries in which the agricultural use (m 3 /p/yr)(in %) is 2040(93%)?
CREATE TABLE table_15909409_2 (country VARCHAR, agricultural_use__m_3__p_yr__in__percentage_ VARCHAR)
SELECT COUNT(wins) FROM table_name_53 WHERE goals_against > 41 AND points = 29 AND draws > 5
What is the number of wins when the goals against is larger than 41, points is 29, and draws are larger than 5?
CREATE TABLE table_name_53 (wins VARCHAR, draws VARCHAR, goals_against VARCHAR, points VARCHAR)
SELECT team FROM table_27383390_4 WHERE date_of_vacancy = "8 Dec 2010"
What is the team with the date of vacancy 8 dec 2010?
CREATE TABLE table_27383390_4 (team VARCHAR, date_of_vacancy VARCHAR)
SELECT home_team FROM table_name_30 WHERE score = "5 - 5"
What home team has a score of 5 - 5?
CREATE TABLE table_name_30 (home_team VARCHAR, score VARCHAR)
SELECT height_in_ft FROM table_name_11 WHERE school_club_team_country = "illinois"
What is the height in feet of the Illinois player?
CREATE TABLE table_name_11 (height_in_ft VARCHAR, school_club_team_country VARCHAR)
SELECT COUNT(president) FROM table_12134383_1 WHERE date_of_inauguration = "4June1979"
how many president with date of inauguration being 4june1979
CREATE TABLE table_12134383_1 (president VARCHAR, date_of_inauguration VARCHAR)
SELECT MAX(starts) FROM table_29504351_2 WHERE player = "Jeff Brehaut"
What is the maximum start record for player of Jeff Brehaut?
CREATE TABLE table_29504351_2 (starts INTEGER, player VARCHAR)
SELECT score FROM table_name_79 WHERE date = "10 november 2006"
What was the score on 10 November 2006?
CREATE TABLE table_name_79 (score VARCHAR, date VARCHAR)
SELECT majority FROM table_name_8 WHERE clone_independence = "no"
What is the majority when the clone independence is no?
CREATE TABLE table_name_8 (majority VARCHAR, clone_independence VARCHAR)
SELECT date FROM table_name_76 WHERE opponent = "wales"
On what Date was Wales the Opponent?
CREATE TABLE table_name_76 (date VARCHAR, opponent VARCHAR)
SELECT score FROM table_name_55 WHERE record = "67-82"
When the record was 67-82, what was the final score recorded?
CREATE TABLE table_name_55 (score VARCHAR, record VARCHAR)
SELECT winner AS Women FROM table_name_68 WHERE winner = "norway" AND season = "2001/02"
Who had the women's win when Norway was the winner overall in season 2001/02?
CREATE TABLE table_name_68 (winner VARCHAR, season VARCHAR)
SELECT date FROM table_name_50 WHERE stadium = "central park"
What day did they play in central park stadium?
CREATE TABLE table_name_50 (date VARCHAR, stadium VARCHAR)
SELECT tie_no FROM table_name_79 WHERE away_team = "ashford town (middx)"
What was the tie number of the away game for Ashford Town (Middx)?
CREATE TABLE table_name_79 (tie_no VARCHAR, away_team VARCHAR)
SELECT country FROM table_name_22 WHERE player = "henry picard"
What country was Henry Picard from?
CREATE TABLE table_name_22 (country VARCHAR, player VARCHAR)
SELECT COUNT(podiums) FROM table_24491017_1 WHERE series = "British F3 National Class"
How many podiums when he was in the british f3 national class series?
CREATE TABLE table_24491017_1 (podiums VARCHAR, series VARCHAR)
SELECT document_name, access_count FROM documents ORDER BY access_count DESC LIMIT 1
Find the name of the document that has been accessed the greatest number of times, as well as the count of how many times it has been accessed?
CREATE TABLE documents (document_name VARCHAR, access_count VARCHAR)
SELECT player FROM table_name_97 WHERE bowling = "4-15"
What bowler has a record of 4-15?
CREATE TABLE table_name_97 (player VARCHAR, bowling VARCHAR)
SELECT format FROM table_name_78 WHERE frequency = "fm 99.9"
What is FM 99.9's Format?
CREATE TABLE table_name_78 (format VARCHAR, frequency VARCHAR)
SELECT netflix FROM table_name_98 WHERE series_ep = "6-02"
What is the Netflix episode that has a series episode of 6-02?
CREATE TABLE table_name_98 (netflix VARCHAR, series_ep VARCHAR)
SELECT result FROM table_1342149_11 WHERE incumbent = "Tic Forrester"
What was the result of the election when Tic Forrester ran as an incumbent?
CREATE TABLE table_1342149_11 (result VARCHAR, incumbent VARCHAR)
SELECT AVG(rank) FROM table_name_24 WHERE lane > 3 AND heat > 5
Name the average rank with larger than 3 and heat more than 5
CREATE TABLE table_name_24 (rank INTEGER, lane VARCHAR, heat VARCHAR)
SELECT COUNT(hdi) FROM table_25042332_33 WHERE life_expectancy_at_birth__2001_2002_ = "75.9"
How many regions had a life expectancy at birth in 2001-2002 of 75.9?
CREATE TABLE table_25042332_33 (hdi VARCHAR, life_expectancy_at_birth__2001_2002_ VARCHAR)
SELECT cfl_team FROM table_name_23 WHERE player = "peter hogarth"
which CFL team has a player called Peter Hogarth?
CREATE TABLE table_name_23 (cfl_team VARCHAR, player VARCHAR)
SELECT ground FROM table_name_49 WHERE match = 4
Which ground is match 4 held on?
CREATE TABLE table_name_49 (ground VARCHAR, match VARCHAR)
SELECT SUM(points) FROM table_name_18 WHERE artist = "hari mata hari"
What's the sum of points for artist hari mata hari?
CREATE TABLE table_name_18 (points INTEGER, artist VARCHAR)
SELECT COUNT(*) FROM scientists
Find the total number of scientists.
CREATE TABLE scientists (Id VARCHAR)
SELECT Roles.role_description, COUNT(Employees.employee_id) FROM ROLES JOIN Employees ON Employees.role_code = Roles.role_code GROUP BY Employees.role_code HAVING COUNT(Employees.employee_id) > 1
List roles that have more than one employee. List the role description and number of employees.
CREATE TABLE ROLES (Id VARCHAR); CREATE TABLE Employees (Id VARCHAR)
SELECT pts FROM table_name_6 WHERE year = "2004" AND event = "ro"
What is the pts for 2004, and the ro event?
CREATE TABLE table_name_6 (pts VARCHAR, year VARCHAR, event VARCHAR)
SELECT second FROM table_name_91 WHERE third = "jean-michel arsenault"
Which second's third is Jean-Michel Arsenault?
CREATE TABLE table_name_91 (second VARCHAR, third VARCHAR)
SELECT sydney FROM table_name_53 WHERE perth = "no" AND adelaide = "no" AND melbourne = "yes" AND gold_coast = "yes"
Name the sydney with perth of no, adelaide of no with melbourne of yes and gold coast of yes
CREATE TABLE table_name_53 (sydney VARCHAR, gold_coast VARCHAR, melbourne VARCHAR, perth VARCHAR, adelaide VARCHAR)
SELECT score FROM table_name_36 WHERE place = "t2" AND player = "jeff maggert"
What's the score of Jeff Maggert in T2 place?
CREATE TABLE table_name_36 (score VARCHAR, place VARCHAR, player VARCHAR)
SELECT lost FROM table_name_64 WHERE _percentage_won = "55.37"
Name the lost for % won of 55.37
CREATE TABLE table_name_64 (lost VARCHAR, _percentage_won VARCHAR)
SELECT distance FROM table_2581397_3 WHERE weight__kg_ = "56"
List the weight for 56 kilograms.
CREATE TABLE table_2581397_3 (distance VARCHAR, weight__kg_ VARCHAR)
SELECT started FROM table_name_23 WHERE country = "eng" AND loan_club = "sunderland" AND end_source = "south wales echo"
When was the loan started when the coutry is eng, the loan club is sunderland and the end source is south wales echo?
CREATE TABLE table_name_23 (started VARCHAR, end_source VARCHAR, country VARCHAR, loan_club VARCHAR)
SELECT district FROM table_1341395_36 WHERE incumbent = "Steve Chabot"
In what district was the incumbent Steve Chabot?
CREATE TABLE table_1341395_36 (district VARCHAR, incumbent VARCHAR)
SELECT competition FROM table_name_26 WHERE opponent = "peterborough phantoms" AND date = 2
What was the name of the competition that had Peterborough Phantoms as an opponent and a date of 2?
CREATE TABLE table_name_26 (competition VARCHAR, opponent VARCHAR, date VARCHAR)
SELECT mls_team FROM table_name_86 WHERE pick__number = 41
Which MLS team has the #41 pick?
CREATE TABLE table_name_86 (mls_team VARCHAR, pick__number VARCHAR)
SELECT COUNT(wins) FROM table_name_42 WHERE losses < 10 AND against < 1253 AND byes < 0
What is the total number of Wins, when Losses is less than 10, when Against is less than 1253, and when Byes is less than 0?
CREATE TABLE table_name_42 (wins VARCHAR, byes VARCHAR, losses VARCHAR, against VARCHAR)
SELECT year FROM table_name_88 WHERE result = "nominated" AND category = "outstanding actor in a musical"
Which Year has a nominated outstanding actor in a musical?
CREATE TABLE table_name_88 (year VARCHAR, result VARCHAR, category VARCHAR)
SELECT date FROM table_name_53 WHERE record = "2-0"
What is the date of the game when the record is 2-0?
CREATE TABLE table_name_53 (date VARCHAR, record VARCHAR)
SELECT english FROM table_15040_8 WHERE russian = "loshad, kobyla (лошадь, кобыла)"
What is the English word for the Russian words loshad, kobyla (лошадь, кобыла)?
CREATE TABLE table_15040_8 (english VARCHAR, russian VARCHAR)
SELECT location_attendance FROM table_27721131_10 WHERE high_rebounds = "Andray Blatche (9)"
What was the location attendance when Andray Blatche (9) got high rebounds?
CREATE TABLE table_27721131_10 (location_attendance VARCHAR, high_rebounds VARCHAR)
SELECT country FROM table_name_96 WHERE transfer_fee = "undisclosed" AND moving_to = "nacional"
What country is the player, with an undisclosed transfer fee and moving to Nacional, from?
CREATE TABLE table_name_96 (country VARCHAR, transfer_fee VARCHAR, moving_to VARCHAR)
SELECT 2011 FROM table_name_65 WHERE position = "communications rep"
Who held the Communications Rep position in 2011?
CREATE TABLE table_name_65 (position VARCHAR)
SELECT average_attendance_per_match FROM table_27708484_3 WHERE elevation = "1500 m"
what is the average attendance per match wheree the elevation is 1500 m?
CREATE TABLE table_27708484_3 (average_attendance_per_match VARCHAR, elevation VARCHAR)
SELECT 1968 FROM table_name_76 WHERE 1967 = "1r"
Tell me the 1968 for 1r
CREATE TABLE table_name_76 (Id VARCHAR)
SELECT COUNT(year) FROM table_2553861_1 WHERE open_cup = "Did not qualify" AND playoffs = "National Final"
Name the year for open cup did not qualify and national final
CREATE TABLE table_2553861_1 (year VARCHAR, open_cup VARCHAR, playoffs VARCHAR)
SELECT SUM(asts) FROM table_name_35 WHERE school_country = "boston college" AND rebs > 63
What's the sum of asts for boston college with a rebs over 63?
CREATE TABLE table_name_35 (asts INTEGER, school_country VARCHAR, rebs VARCHAR)
SELECT score FROM table_27723526_12 WHERE high_assists = "José Juan Barea (8)"
Name the score for josé juan barea (8)
CREATE TABLE table_27723526_12 (score VARCHAR, high_assists VARCHAR)
SELECT home_team AS score FROM table_name_20 WHERE away_team = "south melbourne"
Who is the home team in the game where South Melbourne was the away team?
CREATE TABLE table_name_20 (home_team VARCHAR, away_team VARCHAR)
SELECT AVG(election) FROM table_name_35 WHERE municipality = "laives" AND inhabitants < 17 OFFSET 197
Which Election has a Municipality of laives, and Inhabitants smaller than 17,197?
CREATE TABLE table_name_35 (election INTEGER, municipality VARCHAR, inhabitants VARCHAR)
SELECT COUNT(overall_ranking) FROM table_name_12 WHERE status = "eliminated" AND name = "廖尹宁 jvnne leow"
What's the total number of overall rankings of 廖尹宁 jvnne leow's events that are eliminated?
CREATE TABLE table_name_12 (overall_ranking VARCHAR, status VARCHAR, name VARCHAR)
SELECT position FROM table_name_47 WHERE club_province = "newcastle" AND caps < 24 AND player = "toby flood"
What position does Toby Flood, who is from Newcastle and has fewer than 24 caps, play?
CREATE TABLE table_name_47 (position VARCHAR, player VARCHAR, club_province VARCHAR, caps VARCHAR)
SELECT DISTINCT T2.Hometown FROM gymnast AS T1 JOIN people AS T2 ON T1.Gymnast_ID = T2.People_ID WHERE T1.Total_Points > 57.5
What are the distinct hometowns of gymnasts with total points more than 57.5?
CREATE TABLE gymnast (Gymnast_ID VARCHAR, Total_Points INTEGER); CREATE TABLE people (Hometown VARCHAR, People_ID VARCHAR)
SELECT icao FROM table_name_79 WHERE airport = "julius nyerere international airport"
Name the ICAO for julius nyerere international airport
CREATE TABLE table_name_79 (icao VARCHAR, airport VARCHAR)
SELECT segment_d FROM table_name_89 WHERE series_ep = "20-08"
What is Segment D of 20-08 series Ep.?
CREATE TABLE table_name_89 (segment_d VARCHAR, series_ep VARCHAR)
SELECT partner FROM table_2127933_3 WHERE opponents = "Harry Johnson Hazel Hotchkiss Wightman"
Who were the partners during times that harry johnson hazel hotchkiss wightman was the opponent?
CREATE TABLE table_2127933_3 (partner VARCHAR, opponents VARCHAR)
SELECT SUM(altitude__meters_) FROM table_name_93 WHERE range = "belgica mountains" AND name = "mount launoit"
What is the altitude (meters) is associated with the Name Mount Launoit, with the range as Belgica Mountains?
CREATE TABLE table_name_93 (altitude__meters_ INTEGER, range VARCHAR, name VARCHAR)
SELECT MAX(lost) FROM table_name_9 WHERE against > 60 AND points < 61 AND drawn > 18
What is the highest lost that has an against greater than 60, points less than 61 and an 18 drawn?
CREATE TABLE table_name_9 (lost INTEGER, drawn VARCHAR, against VARCHAR, points VARCHAR)
SELECT written_by FROM table_28348757_6 WHERE production_code = "XLE05012"
Who wrote the episode with the code xle05012?
CREATE TABLE table_28348757_6 (written_by VARCHAR, production_code VARCHAR)
SELECT constructor FROM table_name_59 WHERE grid > 10 AND time_retired = "+1 lap"
who is the constructor when the grid is more than 10 and the time/retired is +1 lap?
CREATE TABLE table_name_59 (constructor VARCHAR, grid VARCHAR, time_retired VARCHAR)
SELECT winning_score FROM table_name_69 WHERE date = "oct 17, 1982"
For the tournament played on Oct 17, 1982, what was the winning score?
CREATE TABLE table_name_69 (winning_score VARCHAR, date VARCHAR)
SELECT race_name FROM table_name_37 WHERE city_state = "sydney, new south wales"
Which race was in Sydney, New South Wales?
CREATE TABLE table_name_37 (race_name VARCHAR, city_state VARCHAR)
SELECT score FROM table_name_75 WHERE place = "t2" AND country = "england"
What Score has a Place of t2, and a Country of england?
CREATE TABLE table_name_75 (score VARCHAR, place VARCHAR, country VARCHAR)
SELECT COUNT(laps) FROM table_name_32 WHERE driver = "antônio pizzonia"
How many laps did antônio pizzonia do?
CREATE TABLE table_name_32 (laps VARCHAR, driver VARCHAR)
SELECT dutch FROM table_name_68 WHERE LOW_GERMAN(Groningen) = høvd / høvur
What is the Dutch waord for høvd / høvur?
CREATE TABLE table_name_68 (dutch VARCHAR, Groningen VARCHAR, høvd VARCHAR, høvur VARCHAR)
SELECT nationality FROM table_name_33 WHERE round = 4 AND college = "oklahoma"
What is the nationality of the round 4 draft selection who played college ball at oklahoma?
CREATE TABLE table_name_33 (nationality VARCHAR, round VARCHAR, college VARCHAR)