question stringlengths 12 244 | context stringlengths 27 489 | answer dict |
|---|---|---|
What is the high lap total for tyrrell - yamaha, and a Time/Retired of + 1 lap? | CREATE TABLE table_name_42 (laps INTEGER, constructor VARCHAR, time_retired VARCHAR) | {
"SQL_Query": "SELECT MAX(laps) FROM table_name_42 WHERE constructor = \"tyrrell - yamaha\" AND time_retired = \"+ 1 lap\""
} |
What is the low lap total for a grid of 14? | CREATE TABLE table_name_12 (laps INTEGER, grid VARCHAR) | {
"SQL_Query": "SELECT MIN(laps) FROM table_name_12 WHERE grid = 14"
} |
How many laps for martin brundle with a grid of less than 10? | CREATE TABLE table_name_54 (laps VARCHAR, driver VARCHAR, grid VARCHAR) | {
"SQL_Query": "SELECT COUNT(laps) FROM table_name_54 WHERE driver = \"martin brundle\" AND grid < 10"
} |
What was the average points in the quarterfinals domestic cup? | CREATE TABLE table_name_72 (points INTEGER, domestic_cup VARCHAR) | {
"SQL_Query": "SELECT AVG(points) FROM table_name_72 WHERE domestic_cup = \"quarterfinals\""
} |
Which level is quarterfinals domestic cup? | CREATE TABLE table_name_22 (level VARCHAR, domestic_cup VARCHAR) | {
"SQL_Query": "SELECT level FROM table_name_22 WHERE domestic_cup = \"quarterfinals\""
} |
What format is catalogue 148615 in? | CREATE TABLE table_name_78 (format VARCHAR, catalogue VARCHAR) | {
"SQL_Query": "SELECT format FROM table_name_78 WHERE catalogue = \"148615\""
} |
Which region was on June 8, 2004? | CREATE TABLE table_name_7 (region VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT region FROM table_name_7 WHERE date = \"june 8, 2004\""
} |
What format is catalogue WPCR13504 in? | CREATE TABLE table_name_94 (format VARCHAR, catalogue VARCHAR) | {
"SQL_Query": "SELECT format FROM table_name_94 WHERE catalogue = \"wpcr13504\""
} |
What format is the Catalogue 9362486152 from the region of Australia in? | CREATE TABLE table_name_79 (format VARCHAR, catalogue VARCHAR, region VARCHAR) | {
"SQL_Query": "SELECT format FROM table_name_79 WHERE catalogue = \"9362486152\" AND region = \"australia\""
} |
What region is the catalogue number 9362486152 that was from September 3, 2004 from? | CREATE TABLE table_name_50 (region VARCHAR, catalogue VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT region FROM table_name_50 WHERE catalogue = \"9362486152\" AND date = \"september 3, 2004\""
} |
What region is the catalogue released on June 8, 2004 from? | CREATE TABLE table_name_88 (region VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT region FROM table_name_88 WHERE date = \"june 8, 2004\""
} |
What day is carlton the home side? | CREATE TABLE table_name_87 (date VARCHAR, home_team VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_87 WHERE home_team = \"carlton\""
} |
What is the home team's score when south melbourne is away? | CREATE TABLE table_name_23 (home_team VARCHAR, away_team VARCHAR) | {
"SQL_Query": "SELECT home_team AS score FROM table_name_23 WHERE away_team = \"south melbourne\""
} |
Tell me the listed when cerclis id is msd004006995 | CREATE TABLE table_name_17 (listed VARCHAR, cerclis_id VARCHAR) | {
"SQL_Query": "SELECT listed FROM table_name_17 WHERE cerclis_id = \"msd004006995\""
} |
What is the timeslor rank for the episode with larger than 2.9 rating, rating/share of 2.6/8 and rank for the night higher than 5? | CREATE TABLE table_name_2 (rank__timeslot_ INTEGER, rank__night_ VARCHAR, rating VARCHAR) | {
"SQL_Query": "SELECT AVG(rank__timeslot_) FROM table_name_2 WHERE rating > 2.9 AND rating / SHARE(18 - 49) = 2.6 / 8 AND rank__night_ > 5"
} |
What is the smallest rating with nightly rank smaller than 7, timeslot rank smaller than 5 and eposide after episode 6? | CREATE TABLE table_name_27 (rating INTEGER, episode VARCHAR, rank__night_ VARCHAR, rank__timeslot_ VARCHAR) | {
"SQL_Query": "SELECT MIN(rating) FROM table_name_27 WHERE rank__night_ < 7 AND rank__timeslot_ < 5 AND episode > 6"
} |
What is the lowest nightly rank for an episode after episode 1 with a rating/share of 2.6/8? | CREATE TABLE table_name_91 (rank__night_ INTEGER, episode VARCHAR, rating VARCHAR) | {
"SQL_Query": "SELECT MIN(rank__night_) FROM table_name_91 WHERE rating / SHARE(18 - 49) = 2.6 / 8 AND episode > 1"
} |
What is the timeslot rank when the rating is smaller than 2.6 and the share is more than 4? | CREATE TABLE table_name_97 (rank__timeslot_ INTEGER, rating VARCHAR, share VARCHAR) | {
"SQL_Query": "SELECT AVG(rank__timeslot_) FROM table_name_97 WHERE rating < 2.6 AND share > 4"
} |
What is the smallest timeslot rank when the rating is smaller than 2.6? | CREATE TABLE table_name_29 (rank__timeslot_ INTEGER, rating INTEGER) | {
"SQL_Query": "SELECT MIN(rank__timeslot_) FROM table_name_29 WHERE rating < 2.6"
} |
What away team played at Kardinia Park? | CREATE TABLE table_name_24 (away_team VARCHAR, venue VARCHAR) | {
"SQL_Query": "SELECT away_team FROM table_name_24 WHERE venue = \"kardinia park\""
} |
What team played Hawthorn? | CREATE TABLE table_name_82 (away_team VARCHAR, home_team VARCHAR) | {
"SQL_Query": "SELECT away_team FROM table_name_82 WHERE home_team = \"hawthorn\""
} |
What is the total wins with less than 21 goals taken? | CREATE TABLE table_name_19 (wins INTEGER, goals_against INTEGER) | {
"SQL_Query": "SELECT SUM(wins) FROM table_name_19 WHERE goals_against < 21"
} |
What is the date of game 59? | CREATE TABLE table_name_96 (date VARCHAR, game VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_96 WHERE game = 59"
} |
What player is a lock with 1 cap? | CREATE TABLE table_name_16 (player VARCHAR, position VARCHAR, caps VARCHAR) | {
"SQL_Query": "SELECT player FROM table_name_16 WHERE position = \"lock\" AND caps = 1"
} |
What position does ceri sweeney with under 87 caps of the newport gwent dragons play? | CREATE TABLE table_name_41 (position VARCHAR, player VARCHAR, club_province VARCHAR, caps VARCHAR) | {
"SQL_Query": "SELECT position FROM table_name_41 WHERE club_province = \"newport gwent dragons\" AND caps < 87 AND player = \"ceri sweeney\""
} |
What player has 12 caps? | CREATE TABLE table_name_36 (player VARCHAR, caps VARCHAR) | {
"SQL_Query": "SELECT player FROM table_name_36 WHERE caps = 12"
} |
Tell me the Shuji Kondo for MAZADA of X with Ryuji Hijikata of hijikata (14:24) | CREATE TABLE table_name_90 (shuji_kondo VARCHAR, mazada VARCHAR, ryuji_hijikata VARCHAR) | {
"SQL_Query": "SELECT shuji_kondo FROM table_name_90 WHERE mazada = \"x\" AND ryuji_hijikata = \"hijikata (14:24)\""
} |
Name the El samurai with MAZADA of x for Ryuji Hijikata of draw (30:00) | CREATE TABLE table_name_30 (el_samurai VARCHAR, mazada VARCHAR, ryuji_hijikata VARCHAR) | {
"SQL_Query": "SELECT el_samurai FROM table_name_30 WHERE mazada = \"x\" AND ryuji_hijikata = \"draw (30:00)\""
} |
Name the MAZADA for El Samurai of mazada (16:22) | CREATE TABLE table_name_67 (mazada VARCHAR, el_samurai VARCHAR) | {
"SQL_Query": "SELECT mazada FROM table_name_67 WHERE el_samurai = \"mazada (16:22)\""
} |
Name the Shuji Kondo for MAZADA of hijikata (14:24) | CREATE TABLE table_name_61 (shuji_kondo VARCHAR, mazada VARCHAR) | {
"SQL_Query": "SELECT shuji_kondo FROM table_name_61 WHERE mazada = \"hijikata (14:24)\""
} |
when was the building withdrawn when the builder was ac cars and was introduced before 1958? | CREATE TABLE table_name_78 (withdrawn INTEGER, builder VARCHAR, introduced VARCHAR) | {
"SQL_Query": "SELECT SUM(withdrawn) FROM table_name_78 WHERE builder = \"ac cars\" AND introduced < 1958"
} |
What was the decision on october 5? | CREATE TABLE table_name_44 (decision VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT decision FROM table_name_44 WHERE date = \"october 5\""
} |
Who played home team at Victoria Park? | CREATE TABLE table_name_41 (home_team VARCHAR, venue VARCHAR) | {
"SQL_Query": "SELECT home_team FROM table_name_41 WHERE venue = \"victoria park\""
} |
What Season has Goals greater than 0 and less than 33 Apps? | CREATE TABLE table_name_34 (season VARCHAR, goals VARCHAR, apps VARCHAR) | {
"SQL_Query": "SELECT season FROM table_name_34 WHERE goals > 0 AND apps < 33"
} |
How many carries for the RB averaging 4.7, and a long of over 30 yards? | CREATE TABLE table_name_65 (car INTEGER, avg VARCHAR, long VARCHAR) | {
"SQL_Query": "SELECT SUM(car) FROM table_name_65 WHERE avg = 4.7 AND long > 30"
} |
How many yards did kevin swayne average, with a long carry over 7? | CREATE TABLE table_name_43 (avg INTEGER, player VARCHAR, long VARCHAR) | {
"SQL_Query": "SELECT MIN(avg) FROM table_name_43 WHERE player = \"kevin swayne\" AND long > 7"
} |
What is the catalogue for Harbor Lights as a title? | CREATE TABLE table_name_59 (catalogue VARCHAR, song_title VARCHAR) | {
"SQL_Query": "SELECT catalogue FROM table_name_59 WHERE song_title = \"harbor lights\""
} |
What cataglogue has 27 tracks? | CREATE TABLE table_name_51 (catalogue VARCHAR, track VARCHAR) | {
"SQL_Query": "SELECT catalogue FROM table_name_51 WHERE track = 27"
} |
Which year first played with Double W-L of 8–3? | CREATE TABLE table_name_12 (first_year_played VARCHAR, doubles_w_l VARCHAR) | {
"SQL_Query": "SELECT first_year_played FROM table_name_12 WHERE doubles_w_l = \"8–3\""
} |
What is the height that has a year after 1983 and is named Phoenix Tower? | CREATE TABLE table_name_28 (height_ft___m VARCHAR, year VARCHAR, name VARCHAR) | {
"SQL_Query": "SELECT height_ft___m FROM table_name_28 WHERE year > 1983 AND name = \"phoenix tower\""
} |
What is the oldest year listed with the 1500 Louisiana Street name? | CREATE TABLE table_name_87 (year INTEGER, name VARCHAR) | {
"SQL_Query": "SELECT MIN(year) FROM table_name_87 WHERE name = \"1500 louisiana street\""
} |
What is the Height of rank 11? | CREATE TABLE table_name_32 (height_ft___m VARCHAR, rank VARCHAR) | {
"SQL_Query": "SELECT height_ft___m FROM table_name_32 WHERE rank = \"11\""
} |
What is the largest enrollment for anglican day schools founded after 1929? | CREATE TABLE table_name_82 (enrolment INTEGER, founded VARCHAR, denomination VARCHAR, day_boarding VARCHAR) | {
"SQL_Query": "SELECT MAX(enrolment) FROM table_name_82 WHERE denomination = \"anglican\" AND day_boarding = \"day\" AND founded > 1929"
} |
What city of license is associated with call sign w244bk? | CREATE TABLE table_name_44 (city_of_license VARCHAR, call_sign VARCHAR) | {
"SQL_Query": "SELECT city_of_license FROM table_name_44 WHERE call_sign = \"w244bk\""
} |
What city of license has a Frequency under 107.7, and a call sign of w247aq? | CREATE TABLE table_name_52 (city_of_license VARCHAR, frequency_mhz VARCHAR, call_sign VARCHAR) | {
"SQL_Query": "SELECT city_of_license FROM table_name_52 WHERE frequency_mhz < 107.7 AND call_sign = \"w247aq\""
} |
Which team was played against on the game where Earl Watson (6) had the highest assists on January 19? | CREATE TABLE table_name_19 (team VARCHAR, high_assists VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT team FROM table_name_19 WHERE high_assists = \"earl watson (6)\" AND date = \"january 19\""
} |
A singular abbreviation of p. is used for what singular word? | CREATE TABLE table_name_18 (singular_word VARCHAR, singular_abbreviation VARCHAR) | {
"SQL_Query": "SELECT singular_word FROM table_name_18 WHERE singular_abbreviation = \"p.\""
} |
A plural abbreviation of pp. is used for what singular word? | CREATE TABLE table_name_82 (singular_word VARCHAR, plural_abbreviation VARCHAR) | {
"SQL_Query": "SELECT singular_word FROM table_name_82 WHERE plural_abbreviation = \"pp.\""
} |
The plural word of hands uses what singular word? | CREATE TABLE table_name_24 (singular_word VARCHAR, plural_word VARCHAR) | {
"SQL_Query": "SELECT singular_word FROM table_name_24 WHERE plural_word = \"hands\""
} |
The plural word of following lines or pages has what plural abbreviation? | CREATE TABLE table_name_21 (plural_abbreviation VARCHAR, plural_word VARCHAR) | {
"SQL_Query": "SELECT plural_abbreviation FROM table_name_21 WHERE plural_word = \"following lines or pages\""
} |
The plural abbreviation of ll. uses what plural word? | CREATE TABLE table_name_94 (plural_word VARCHAR, plural_abbreviation VARCHAR) | {
"SQL_Query": "SELECT plural_word FROM table_name_94 WHERE plural_abbreviation = \"ll.\""
} |
The singular word of hand uses what plural word? | CREATE TABLE table_name_20 (plural_word VARCHAR, singular_word VARCHAR) | {
"SQL_Query": "SELECT plural_word FROM table_name_20 WHERE singular_word = \"hand\""
} |
How much did the home team st kilda score? | CREATE TABLE table_name_76 (home_team VARCHAR) | {
"SQL_Query": "SELECT home_team AS score FROM table_name_76 WHERE home_team = \"st kilda\""
} |
When the crowd was larger than 7,500 what was the away teams score? | CREATE TABLE table_name_84 (away_team VARCHAR, crowd INTEGER) | {
"SQL_Query": "SELECT away_team AS score FROM table_name_84 WHERE crowd > 7 OFFSET 500"
} |
What's the total number of people to attend games at junction oval? | CREATE TABLE table_name_42 (crowd VARCHAR, venue VARCHAR) | {
"SQL_Query": "SELECT COUNT(crowd) FROM table_name_42 WHERE venue = \"junction oval\""
} |
How many people have attended victoria park? | CREATE TABLE table_name_62 (crowd VARCHAR, venue VARCHAR) | {
"SQL_Query": "SELECT COUNT(crowd) FROM table_name_62 WHERE venue = \"victoria park\""
} |
How many people voted in the election of 1941? | CREATE TABLE table_name_79 (number_of_votes VARCHAR, election VARCHAR) | {
"SQL_Query": "SELECT number_of_votes FROM table_name_79 WHERE election = 1941"
} |
Which candidate lost the election that 770,046 people voted in? | CREATE TABLE table_name_99 (candidate VARCHAR, outcome_of_election VARCHAR, number_of_votes VARCHAR) | {
"SQL_Query": "SELECT candidate FROM table_name_99 WHERE outcome_of_election = \"lost\" AND number_of_votes = \"770,046\""
} |
Which candidate won 61.47% of the votes? | CREATE TABLE table_name_82 (candidate VARCHAR, share_of_votes VARCHAR) | {
"SQL_Query": "SELECT candidate FROM table_name_82 WHERE share_of_votes = \"61.47%\""
} |
What percentage of votes did the candidate win in the election of 1969? | CREATE TABLE table_name_26 (share_of_votes VARCHAR, election VARCHAR) | {
"SQL_Query": "SELECT share_of_votes FROM table_name_26 WHERE election = 1969"
} |
Which GWR numbers had a quantity less than 2 when the M&SWJ number was 9? | CREATE TABLE table_name_79 (gwr_nos VARCHAR, quantity VARCHAR, m VARCHAR, swj_nos VARCHAR) | {
"SQL_Query": "SELECT gwr_nos FROM table_name_79 WHERE quantity < 2 AND m & swj_nos = \"9\""
} |
Which manucfaturer's type was 2-6-0? | CREATE TABLE table_name_68 (manufacturer VARCHAR, type VARCHAR) | {
"SQL_Query": "SELECT manufacturer FROM table_name_68 WHERE type = \"2-6-0\""
} |
What was the score of the game when the Devils had a record of 14–10–2? | CREATE TABLE table_name_61 (score VARCHAR, record VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_61 WHERE record = \"14–10–2\""
} |
What was the date of the game when the Devils had a record of 21–14–3? | CREATE TABLE table_name_49 (date VARCHAR, record VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_49 WHERE record = \"21–14–3\""
} |
What distance did the winning horse run in the Summer Doldrums. | CREATE TABLE table_name_7 (distance VARCHAR, winning_horse VARCHAR) | {
"SQL_Query": "SELECT distance FROM table_name_7 WHERE winning_horse = \"summer doldrums\""
} |
Who is the jockey for the winning horse Rafael Bejarano? | CREATE TABLE table_name_81 (winning_horse VARCHAR, winning_jockey VARCHAR) | {
"SQL_Query": "SELECT winning_horse FROM table_name_81 WHERE winning_jockey = \"rafael bejarano\""
} |
What is the race with the track distance of 6 furlongs and spectacular bid stakes? | CREATE TABLE table_name_29 (track VARCHAR, distance VARCHAR, race VARCHAR) | {
"SQL_Query": "SELECT track FROM table_name_29 WHERE distance = \"6 furlongs\" AND race = \"spectacular bid stakes\""
} |
what race did Dominican win with a distance of 1-1/16 miles? | CREATE TABLE table_name_57 (race VARCHAR, winning_horse VARCHAR, distance VARCHAR) | {
"SQL_Query": "SELECT race FROM table_name_57 WHERE winning_horse = \"dominican\" AND distance = \"1-1/16 miles\""
} |
What tournament since 1973 has a result of 1st? | CREATE TABLE table_name_66 (tournament VARCHAR, result VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT tournament FROM table_name_66 WHERE result = \"1st\" AND year > 1973"
} |
In what tournament was there an extra of 400 m hurdles? | CREATE TABLE table_name_31 (tournament VARCHAR, extra VARCHAR) | {
"SQL_Query": "SELECT tournament FROM table_name_31 WHERE extra = \"400 m hurdles\""
} |
What was the Result in Year 1973? | CREATE TABLE table_name_97 (result VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT result FROM table_name_97 WHERE year = 1973"
} |
In which year was the Tournament of european indoor championships played where the Extra was 800 m and the Result was 2nd? | CREATE TABLE table_name_95 (year VARCHAR, result VARCHAR, extra VARCHAR, tournament VARCHAR) | {
"SQL_Query": "SELECT year FROM table_name_95 WHERE extra = \"800 m\" AND tournament = \"european indoor championships\" AND result = \"2nd\""
} |
What player is from Chula Vista, Ca? | CREATE TABLE table_name_29 (player VARCHAR, hometown VARCHAR) | {
"SQL_Query": "SELECT player FROM table_name_29 WHERE hometown = \"chula vista, ca\""
} |
What MLB draft has Shaun Boyd? | CREATE TABLE table_name_80 (mlb_draft VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT mlb_draft FROM table_name_80 WHERE player = \"shaun boyd\""
} |
what is the college/junior/club team (league) when the round is more than 2 and the player is bert robertsson (d)? | CREATE TABLE table_name_96 (college_junior_club_team__league_ VARCHAR, round VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT college_junior_club_team__league_ FROM table_name_96 WHERE round > 2 AND player = \"bert robertsson (d)\""
} |
what is the college/junior/club team (league) when the round is less than 7? | CREATE TABLE table_name_82 (college_junior_club_team__league_ VARCHAR, round INTEGER) | {
"SQL_Query": "SELECT college_junior_club_team__league_ FROM table_name_82 WHERE round < 7"
} |
what is the nhl team for round 10? | CREATE TABLE table_name_92 (nhl_team VARCHAR, round VARCHAR) | {
"SQL_Query": "SELECT nhl_team FROM table_name_92 WHERE round = 10"
} |
what is the highest round when the player is troy creurer (d)? | CREATE TABLE table_name_90 (round INTEGER, player VARCHAR) | {
"SQL_Query": "SELECT MAX(round) FROM table_name_90 WHERE player = \"troy creurer (d)\""
} |
Who was the opponent on week 3? | CREATE TABLE table_name_10 (opponent VARCHAR, week VARCHAR) | {
"SQL_Query": "SELECT opponent FROM table_name_10 WHERE week = 3"
} |
What chapter is located in Normal, Illinois? | CREATE TABLE table_name_65 (chapter VARCHAR, location VARCHAR) | {
"SQL_Query": "SELECT chapter FROM table_name_65 WHERE location = \"normal, illinois\""
} |
What is the average position for tb2l teams promoted champion? | CREATE TABLE table_name_79 (pos INTEGER, league VARCHAR, postseason VARCHAR) | {
"SQL_Query": "SELECT AVG(pos) FROM table_name_79 WHERE league = \"tb2l\" AND postseason = \"promoted champion\""
} |
How many teams were promoted in the postseason in a tier above 2? | CREATE TABLE table_name_51 (pos VARCHAR, postseason VARCHAR, tier VARCHAR) | {
"SQL_Query": "SELECT COUNT(pos) FROM table_name_51 WHERE postseason = \"promoted\" AND tier < 2"
} |
What is the Home team score At Windy Hill? | CREATE TABLE table_name_48 (home_team VARCHAR, venue VARCHAR) | {
"SQL_Query": "SELECT home_team AS score FROM table_name_48 WHERE venue = \"windy hill\""
} |
Who is the partner in the final with a score of 2–6, 7–6, 7–6? | CREATE TABLE table_name_10 (partner VARCHAR, score_in_the_final VARCHAR) | {
"SQL_Query": "SELECT partner FROM table_name_10 WHERE score_in_the_final = \"2–6, 7–6, 7–6\""
} |
On what surface was Ivan Lendl a partner with a runner-up outcome and final score of 2–6, 6–7? | CREATE TABLE table_name_66 (surface VARCHAR, score_in_the_final VARCHAR, outcome VARCHAR, partner VARCHAR) | {
"SQL_Query": "SELECT surface FROM table_name_66 WHERE outcome = \"runner-up\" AND partner = \"ivan lendl\" AND score_in_the_final = \"2–6, 6–7\""
} |
What was the highest crowd at the venue MCG? | CREATE TABLE table_name_97 (crowd INTEGER, venue VARCHAR) | {
"SQL_Query": "SELECT MAX(crowd) FROM table_name_97 WHERE venue = \"mcg\""
} |
What is the away team score at the Windy Hill venue? | CREATE TABLE table_name_8 (away_team VARCHAR, venue VARCHAR) | {
"SQL_Query": "SELECT away_team AS score FROM table_name_8 WHERE venue = \"windy hill\""
} |
Where was the game when Melbourne was the away team? | CREATE TABLE table_name_53 (venue VARCHAR, away_team VARCHAR) | {
"SQL_Query": "SELECT venue FROM table_name_53 WHERE away_team = \"melbourne\""
} |
What was the away score when the game was at Brunswick Street Oval? | CREATE TABLE table_name_70 (away_team VARCHAR, venue VARCHAR) | {
"SQL_Query": "SELECT away_team AS score FROM table_name_70 WHERE venue = \"brunswick street oval\""
} |
How many rounds were run at Calder Park? | CREATE TABLE table_name_28 (round VARCHAR, circuit VARCHAR) | {
"SQL_Query": "SELECT COUNT(round) FROM table_name_28 WHERE circuit = \"calder park\""
} |
In which state can you find the Sandown circuit? | CREATE TABLE table_name_74 (state VARCHAR, circuit VARCHAR) | {
"SQL_Query": "SELECT state FROM table_name_74 WHERE circuit = \"sandown\""
} |
How many rounds were run in New South Wales? | CREATE TABLE table_name_84 (round VARCHAR, state VARCHAR) | {
"SQL_Query": "SELECT COUNT(round) FROM table_name_84 WHERE state = \"new south wales\""
} |
Who is the driver from 1969? | CREATE TABLE table_name_42 (driver VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT driver FROM table_name_42 WHERE year = \"1969\""
} |
Who was the driver in 1964? | CREATE TABLE table_name_83 (driver VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT driver FROM table_name_83 WHERE year = \"1964\""
} |
What is the highest diff with drawn of 6 and play larger than 18? | CREATE TABLE table_name_68 (diff INTEGER, drawn VARCHAR, played VARCHAR) | {
"SQL_Query": "SELECT MAX(diff) FROM table_name_68 WHERE drawn = 6 AND played > 18"
} |
How many games were played when the loss is less than 5 and points greater than 41? | CREATE TABLE table_name_85 (played INTEGER, lost VARCHAR, points VARCHAR) | {
"SQL_Query": "SELECT SUM(played) FROM table_name_85 WHERE lost < 5 AND points > 41"
} |
How many genes are in species burkholderia pseudomallei with 4,126,292 base pairs? | CREATE TABLE table_name_13 (genes VARCHAR, species VARCHAR, base_pairs VARCHAR) | {
"SQL_Query": "SELECT genes FROM table_name_13 WHERE species = \"burkholderia pseudomallei\" AND base_pairs = \"4,126,292\""
} |
Which strain has 1,312 genes? | CREATE TABLE table_name_50 (strain VARCHAR, genes VARCHAR) | {
"SQL_Query": "SELECT strain FROM table_name_50 WHERE genes = \"1,312\""
} |
Which gene has 4,895,836 base pairs? | CREATE TABLE table_name_94 (genes VARCHAR, base_pairs VARCHAR) | {
"SQL_Query": "SELECT genes FROM table_name_94 WHERE base_pairs = \"4,895,836\""
} |
Which species has 3,441 genes? | CREATE TABLE table_name_58 (species VARCHAR, genes VARCHAR) | {
"SQL_Query": "SELECT species FROM table_name_58 WHERE genes = \"3,441\""
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.