question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
How many solar eclipse during June 10-11 and march 27-29 is 149?
CREATE TABLE table_25287007_2 (june_10_11 VARCHAR, march_27_29 VARCHAR)
{ "SQL_Query": "SELECT june_10_11 FROM table_25287007_2 WHERE march_27_29 = \"149\"" }
How many solar eclipse during august 21-22 and January 15-16 is 141?
CREATE TABLE table_25287007_2 (august_21_22 VARCHAR, january_15_16 VARCHAR)
{ "SQL_Query": "SELECT august_21_22 FROM table_25287007_2 WHERE january_15_16 = \"141\"" }
How many solar eclipse during January 15-16 and august 21-22 on august 21, 2017?
CREATE TABLE table_25287007_2 (january_15_16 VARCHAR, august_21_22 VARCHAR)
{ "SQL_Query": "SELECT january_15_16 FROM table_25287007_2 WHERE august_21_22 = \"August 21, 2017\"" }
Name the fastest lap for round 14
CREATE TABLE table_25322130_3 (fastest_lap VARCHAR, round VARCHAR)
{ "SQL_Query": "SELECT COUNT(fastest_lap) FROM table_25322130_3 WHERE round = \"14\"" }
Name the winning driver for 20 april
CREATE TABLE table_25322130_3 (winning_driver VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT winning_driver FROM table_25322130_3 WHERE date = \"20 April\"" }
Name the circuit for 13 july
CREATE TABLE table_25322130_3 (circuit VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT circuit FROM table_25322130_3 WHERE date = \"13 July\"" }
Name the fastest lap for round 3
CREATE TABLE table_25322130_3 (fastest_lap VARCHAR, round VARCHAR)
{ "SQL_Query": "SELECT fastest_lap FROM table_25322130_3 WHERE round = \"3\"" }
Name the fastest lap for piquet sports and silverstone
CREATE TABLE table_25322130_3 (fastest_lap VARCHAR, winning_team VARCHAR, circuit VARCHAR)
{ "SQL_Query": "SELECT fastest_lap FROM table_25322130_3 WHERE winning_team = \"Piquet Sports\" AND circuit = \"Silverstone\"" }
How many laps where the position is 10th and the races is smaller than 9.0?
CREATE TABLE table_25318033_1 (f_laps VARCHAR, position VARCHAR, races VARCHAR)
{ "SQL_Query": "SELECT COUNT(f_laps) FROM table_25318033_1 WHERE position = \"10th\" AND races < 9.0" }
What is the lowest amount of races?
CREATE TABLE table_25318033_1 (races INTEGER)
{ "SQL_Query": "SELECT MIN(races) FROM table_25318033_1" }
Which races have 137 points?
CREATE TABLE table_25318033_1 (races VARCHAR, points VARCHAR)
{ "SQL_Query": "SELECT races FROM table_25318033_1 WHERE points = \"137\"" }
What team has 137 points?
CREATE TABLE table_25318033_1 (team VARCHAR, points VARCHAR)
{ "SQL_Query": "SELECT team FROM table_25318033_1 WHERE points = \"137\"" }
How many points were scored when the podiums is 0 and position is 10th?
CREATE TABLE table_25318033_1 (points VARCHAR, podiums VARCHAR, position VARCHAR)
{ "SQL_Query": "SELECT points FROM table_25318033_1 WHERE podiums = 0 AND position = \"10th\"" }
What is the rate limit when the desired rate change (%) is +40.4?
CREATE TABLE table_25316812_1 (rate_limit__p_ VARCHAR, desired_rate_change___percentage_ VARCHAR)
{ "SQL_Query": "SELECT rate_limit__p_ FROM table_25316812_1 WHERE desired_rate_change___percentage_ = \"+40.4\"" }
What is the rate limit when budget plans (£m) is limit agreed?
CREATE TABLE table_25316812_1 (rate_limit__p_ VARCHAR, budget_plans__£m_ VARCHAR)
{ "SQL_Query": "SELECT rate_limit__p_ FROM table_25316812_1 WHERE budget_plans__£m_ = \"limit agreed\"" }
What is the rate limit when the desired rate (p) is 162?
CREATE TABLE table_25316812_1 (rate_limit__p_ VARCHAR, desired_rate__p_ VARCHAR)
{ "SQL_Query": "SELECT rate_limit__p_ FROM table_25316812_1 WHERE desired_rate__p_ = \"162\"" }
What is the rate change % when the rate limit is 82.86?
CREATE TABLE table_25316812_1 (rate_change___percentage_ VARCHAR, rate_limit__p_ VARCHAR)
{ "SQL_Query": "SELECT rate_change___percentage_ FROM table_25316812_1 WHERE rate_limit__p_ = \"82.86\"" }
What is the desired rate when the rate limit (p) is 50.33?
CREATE TABLE table_25316812_1 (desired_rate__p_ VARCHAR, rate_limit__p_ VARCHAR)
{ "SQL_Query": "SELECT desired_rate__p_ FROM table_25316812_1 WHERE rate_limit__p_ = \"50.33\"" }
What is the authority who set the budget limit (£m) at 900?
CREATE TABLE table_25316812_1 (authority VARCHAR, budget_limit__£m_ VARCHAR)
{ "SQL_Query": "SELECT authority FROM table_25316812_1 WHERE budget_limit__£m_ = \"900\"" }
What was the highest share?
CREATE TABLE table_25304789_1 (share INTEGER)
{ "SQL_Query": "SELECT MAX(share) FROM table_25304789_1" }
What was the final score of the game with 7523 in attendance?
CREATE TABLE table_25331766_3 (final_score VARCHAR, attendance VARCHAR)
{ "SQL_Query": "SELECT final_score FROM table_25331766_3 WHERE attendance = 7523" }
What is the lowest attendance?
CREATE TABLE table_25331766_3 (attendance INTEGER)
{ "SQL_Query": "SELECT MIN(attendance) FROM table_25331766_3" }
If the rebounds are at 87, what are the amount of steals?
CREATE TABLE table_25342713_5 (steals VARCHAR, rebounds VARCHAR)
{ "SQL_Query": "SELECT steals FROM table_25342713_5 WHERE rebounds = 87" }
How many players 89 points?
CREATE TABLE table_25342713_5 (blocks VARCHAR, points VARCHAR)
{ "SQL_Query": "SELECT COUNT(blocks) FROM table_25342713_5 WHERE points = 89" }
If the Steals are 20, what are the blocks?
CREATE TABLE table_25342713_5 (blocks INTEGER, steals VARCHAR)
{ "SQL_Query": "SELECT MAX(blocks) FROM table_25342713_5 WHERE steals = 20" }
How many millions of viewers did the episode directed by Jeffrey Blitz have?
CREATE TABLE table_25341765_1 (us_viewers__million_ VARCHAR, directed_by VARCHAR)
{ "SQL_Query": "SELECT us_viewers__million_ FROM table_25341765_1 WHERE directed_by = \"Jeffrey Blitz\"" }
Who directed the episode that had 5.92 million viewers?
CREATE TABLE table_25341765_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR)
{ "SQL_Query": "SELECT directed_by FROM table_25341765_1 WHERE us_viewers__million_ = \"5.92\"" }
What was the name of the episode Alan Yang wrote?
CREATE TABLE table_25341765_1 (title VARCHAR, written_by VARCHAR)
{ "SQL_Query": "SELECT title FROM table_25341765_1 WHERE written_by = \"Alan Yang\"" }
How many episodes were directed by Michael McCullers?
CREATE TABLE table_25341765_1 (original_air_date VARCHAR, directed_by VARCHAR)
{ "SQL_Query": "SELECT COUNT(original_air_date) FROM table_25341765_1 WHERE directed_by = \"Michael McCullers\"" }
When 3rd is the position what is the lowest amount of points?
CREATE TABLE table_25352318_1 (points INTEGER, position VARCHAR)
{ "SQL_Query": "SELECT MIN(points) FROM table_25352318_1 WHERE position = \"3rd\"" }
When art grand prix is the team and 2010 is the season how many wins are there?
CREATE TABLE table_25352318_1 (wins VARCHAR, season VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT COUNT(wins) FROM table_25352318_1 WHERE season = 2010 AND team = \"ART Grand Prix\"" }
When 7th is the position and 15 is the race who is the team?
CREATE TABLE table_25352318_1 (team VARCHAR, races VARCHAR, position VARCHAR)
{ "SQL_Query": "SELECT team FROM table_25352318_1 WHERE races = 15 AND position = \"7th\"" }
What is the lowest overall amount of poles?
CREATE TABLE table_25352318_1 (poles INTEGER)
{ "SQL_Query": "SELECT MIN(poles) FROM table_25352318_1" }
When racing engineering is the team and 2012 is the team what is the position?
CREATE TABLE table_25352318_1 (position VARCHAR, season VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT position FROM table_25352318_1 WHERE season = 2012 AND team = \"Racing Engineering\"" }
Is the facility opened in 1968 a major facility?
CREATE TABLE table_25346763_1 (Major VARCHAR, year_opened VARCHAR)
{ "SQL_Query": "SELECT Major AS facility FROM table_25346763_1 WHERE year_opened = \"1968\"" }
What is the custody level of the facility in Shelton?
CREATE TABLE table_25346763_1 (custody_level_s_ VARCHAR, location VARCHAR)
{ "SQL_Query": "SELECT custody_level_s_ FROM table_25346763_1 WHERE location = \"Shelton\"" }
Is the Washington Corrections Center for Women (WCCW) a major facility?
CREATE TABLE table_25346763_1 (Major VARCHAR, facility VARCHAR)
{ "SQL_Query": "SELECT Major AS facility FROM table_25346763_1 WHERE facility = \"Washington Corrections Center for Women (WCCW)\"" }
What is the capacity for a facility opened in 1956?
CREATE TABLE table_25346763_1 (capacity VARCHAR, year_opened VARCHAR)
{ "SQL_Query": "SELECT COUNT(capacity) FROM table_25346763_1 WHERE year_opened = \"1956\"" }
What facility opening in 1954?
CREATE TABLE table_25346763_1 (facility VARCHAR, year_opened VARCHAR)
{ "SQL_Query": "SELECT facility FROM table_25346763_1 WHERE year_opened = \"1954\"" }
Which player had 6 assists?
CREATE TABLE table_25353861_5 (player VARCHAR, assists VARCHAR)
{ "SQL_Query": "SELECT player FROM table_25353861_5 WHERE assists = 6" }
What is the fewest steals any player had?
CREATE TABLE table_25353861_5 (steals INTEGER)
{ "SQL_Query": "SELECT MIN(steals) FROM table_25353861_5" }
How many steals did Kelly Miller have?
CREATE TABLE table_25353861_5 (steals INTEGER, player VARCHAR)
{ "SQL_Query": "SELECT MIN(steals) FROM table_25353861_5 WHERE player = \"Kelly Miller\"" }
Which player had 9 blocks?
CREATE TABLE table_25353861_5 (player VARCHAR, blocks VARCHAR)
{ "SQL_Query": "SELECT player FROM table_25353861_5 WHERE blocks = 9" }
How many rebounds did Tammy Sutton-Brown have?
CREATE TABLE table_25353861_5 (rebounds VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT rebounds FROM table_25353861_5 WHERE player = \"Tammy Sutton-Brown\"" }
What was the science score in the year there was a social studies score of 93.56?
CREATE TABLE table_2534578_1 (science VARCHAR, social_studies VARCHAR)
{ "SQL_Query": "SELECT science FROM table_2534578_1 WHERE social_studies = \"93.56\"" }
How many years did the school have a mathetmatics score of 98.02?
CREATE TABLE table_2534578_1 (science VARCHAR, mathematics VARCHAR)
{ "SQL_Query": "SELECT COUNT(science) FROM table_2534578_1 WHERE mathematics = \"98.02\"" }
What was the reading score in the year the science score was 96.13?
CREATE TABLE table_2534578_1 (reading VARCHAR, science VARCHAR)
{ "SQL_Query": "SELECT reading FROM table_2534578_1 WHERE science = \"96.13\"" }
What was the language score when the reading score was 94.47?
CREATE TABLE table_2534578_1 (language VARCHAR, reading VARCHAR)
{ "SQL_Query": "SELECT language FROM table_2534578_1 WHERE reading = \"94.47\"" }
How many values for points have Sophia Witherspoon as the player?
CREATE TABLE table_25352324_5 (points VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT COUNT(points) FROM table_25352324_5 WHERE player = \"Sophia Witherspoon\"" }
What is the highest value for points?
CREATE TABLE table_25352324_5 (points INTEGER)
{ "SQL_Query": "SELECT MAX(points) FROM table_25352324_5" }
What is every value for rebounds when steals is 19?
CREATE TABLE table_25352324_5 (rebounds VARCHAR, steals VARCHAR)
{ "SQL_Query": "SELECT rebounds FROM table_25352324_5 WHERE steals = 19" }
What is every value for points if rebounds is 6 and blocks is 0?
CREATE TABLE table_25352324_5 (points VARCHAR, rebounds VARCHAR, blocks VARCHAR)
{ "SQL_Query": "SELECT points FROM table_25352324_5 WHERE rebounds = 6 AND blocks = 0" }
What is every entry for assists if the player is Lynn Pride?
CREATE TABLE table_25352324_5 (assists VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT assists FROM table_25352324_5 WHERE player = \"Lynn Pride\"" }
What is the air date of the episode written by Itamar Moses?
CREATE TABLE table_25356350_3 (original_air_date VARCHAR, written_by VARCHAR)
{ "SQL_Query": "SELECT original_air_date FROM table_25356350_3 WHERE written_by = \"Itamar Moses\"" }
What is the june 10-11 when august 21-22 is august 21, 2017?
CREATE TABLE table_25355392_2 (june_10_11 VARCHAR, august_21_22 VARCHAR)
{ "SQL_Query": "SELECT june_10_11 FROM table_25355392_2 WHERE august_21_22 = \"August 21, 2017\"" }
how many times is march 27-29 is 129?
CREATE TABLE table_25355392_2 (november_3 VARCHAR, march_27_29 VARCHAR)
{ "SQL_Query": "SELECT COUNT(november_3) FROM table_25355392_2 WHERE march_27_29 = \"129\"" }
what is june 10-11 when march 27-29 is 149?
CREATE TABLE table_25355392_2 (june_10_11 VARCHAR, march_27_29 VARCHAR)
{ "SQL_Query": "SELECT june_10_11 FROM table_25355392_2 WHERE march_27_29 = \"149\"" }
what is november 3 when june 10-11 is june 10, 1964?
CREATE TABLE table_25355392_2 (november_3 VARCHAR, june_10_11 VARCHAR)
{ "SQL_Query": "SELECT november_3 FROM table_25355392_2 WHERE june_10_11 = \"June 10, 1964\"" }
what is march 27-29 when november 3 is 133?
CREATE TABLE table_25355392_2 (march_27_29 VARCHAR, november_3 VARCHAR)
{ "SQL_Query": "SELECT march_27_29 FROM table_25355392_2 WHERE november_3 = \"133\"" }
What is january 15-16 when november 3 is 153?
CREATE TABLE table_25355392_2 (january_15_16 VARCHAR, november_3 VARCHAR)
{ "SQL_Query": "SELECT january_15_16 FROM table_25355392_2 WHERE november_3 = \"153\"" }
january 15-16 when august 21-22 is august 22, 1979?
CREATE TABLE table_25355501_2 (january_15_16 VARCHAR, august_21_22 VARCHAR)
{ "SQL_Query": "SELECT january_15_16 FROM table_25355501_2 WHERE august_21_22 = \"August 22, 1979\"" }
How many entries are shown for november 3 when january 15-16 is 141?
CREATE TABLE table_25355501_2 (november_3 VARCHAR, january_15_16 VARCHAR)
{ "SQL_Query": "SELECT COUNT(november_3) FROM table_25355501_2 WHERE january_15_16 = \"141\"" }
march 27-29 where june 10-11 is 127?
CREATE TABLE table_25355501_2 (march_27_29 VARCHAR, june_10_11 VARCHAR)
{ "SQL_Query": "SELECT march_27_29 FROM table_25355501_2 WHERE june_10_11 = \"127\"" }
june 10-11 when november 3 is 133?
CREATE TABLE table_25355501_2 (june_10_11 VARCHAR, november_3 VARCHAR)
{ "SQL_Query": "SELECT june_10_11 FROM table_25355501_2 WHERE november_3 = \"133\"" }
june 10-11 when january 15-16 is january 15, 1991?
CREATE TABLE table_25355501_2 (june_10_11 VARCHAR, january_15_16 VARCHAR)
{ "SQL_Query": "SELECT june_10_11 FROM table_25355501_2 WHERE january_15_16 = \"January 15, 1991\"" }
What is shown for november 3 when august 21-22 is august 22, 1998?
CREATE TABLE table_25355501_2 (november_3 VARCHAR, august_21_22 VARCHAR)
{ "SQL_Query": "SELECT november_3 FROM table_25355501_2 WHERE august_21_22 = \"August 22, 1998\"" }
Name the number of teams for 11th position september 10
CREATE TABLE table_25361570_2 (team VARCHAR, position_in_table VARCHAR, date_of_appointment VARCHAR)
{ "SQL_Query": "SELECT COUNT(team) FROM table_25361570_2 WHERE position_in_table = \"11th\" AND date_of_appointment = \"September 10\"" }
Name the replaced by for august 9
CREATE TABLE table_25361570_2 (replaced_by VARCHAR, date_of_vacancy VARCHAR, date_of_appointment VARCHAR)
{ "SQL_Query": "SELECT replaced_by FROM table_25361570_2 WHERE date_of_vacancy = \"August 9\" AND date_of_appointment = \"August 9\"" }
Name the most number for charvez davis
CREATE TABLE table_25360865_1 (_number INTEGER, name VARCHAR)
{ "SQL_Query": "SELECT MAX(_number) FROM table_25360865_1 WHERE name = \"Charvez Davis\"" }
Name the most height
CREATE TABLE table_25360865_1 (weight INTEGER)
{ "SQL_Query": "SELECT MAX(weight) FROM table_25360865_1" }
Name the number of home town for number being 32
CREATE TABLE table_25360865_1 (home_town VARCHAR, _number VARCHAR)
{ "SQL_Query": "SELECT COUNT(home_town) FROM table_25360865_1 WHERE _number = 32" }
Name the total number of height for number 32
CREATE TABLE table_25360865_1 (height VARCHAR, _number VARCHAR)
{ "SQL_Query": "SELECT COUNT(height) FROM table_25360865_1 WHERE _number = 32" }
Name the number for florida air academy
CREATE TABLE table_25360865_1 (_number VARCHAR, last_school VARCHAR)
{ "SQL_Query": "SELECT _number FROM table_25360865_1 WHERE last_school = \"Florida Air Academy\"" }
Name the height for demetrius jemison
CREATE TABLE table_25360865_1 (height VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT height FROM table_25360865_1 WHERE name = \"Demetrius Jemison\"" }
How many wins did Canterbury Wizards have?
CREATE TABLE table_25368177_1 (won INTEGER, team VARCHAR)
{ "SQL_Query": "SELECT MAX(won) FROM table_25368177_1 WHERE team = \"Canterbury Wizards\"" }
What team had a net run rate of 0.134?
CREATE TABLE table_25368177_1 (team VARCHAR, net_run_rate VARCHAR)
{ "SQL_Query": "SELECT team FROM table_25368177_1 WHERE net_run_rate = \"0.134\"" }
What's the largest number of abandoned games by any of the teams?
CREATE TABLE table_25368177_1 (abandoned INTEGER)
{ "SQL_Query": "SELECT MAX(abandoned) FROM table_25368177_1" }
How many different net run rates did the team with 19 total points have?
CREATE TABLE table_25368177_1 (net_run_rate VARCHAR, total_points VARCHAR)
{ "SQL_Query": "SELECT COUNT(net_run_rate) FROM table_25368177_1 WHERE total_points = 19" }
What was the team that scored 56 points?Qh
CREATE TABLE table_25369796_1 (team VARCHAR, points VARCHAR)
{ "SQL_Query": "SELECT team FROM table_25369796_1 WHERE points = \"56\"" }
What was the earliest season where a team got a 29th position?
CREATE TABLE table_25369796_1 (season INTEGER, position VARCHAR)
{ "SQL_Query": "SELECT MIN(season) FROM table_25369796_1 WHERE position = \"29th\"" }
What was the recorded flaps of HBR Motorsport team?
CREATE TABLE table_25369796_1 (f_laps VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT f_laps FROM table_25369796_1 WHERE team = \"HBR Motorsport\"" }
What was the series where a team scored 56 points?
CREATE TABLE table_25369796_1 (series VARCHAR, points VARCHAR)
{ "SQL_Query": "SELECT series FROM table_25369796_1 WHERE points = \"56\"" }
How many team position scored 56 points?
CREATE TABLE table_25369796_1 (position VARCHAR, points VARCHAR)
{ "SQL_Query": "SELECT COUNT(position) FROM table_25369796_1 WHERE points = \"56\"" }
On what dates was the final score of the game L 14–24?
CREATE TABLE table_25380472_2 (date VARCHAR, final_score VARCHAR)
{ "SQL_Query": "SELECT date FROM table_25380472_2 WHERE final_score = \"L 14–24\"" }
How many game sites are there where the team record is 1–7?
CREATE TABLE table_25380472_2 (game_site VARCHAR, team_record VARCHAR)
{ "SQL_Query": "SELECT COUNT(game_site) FROM table_25380472_2 WHERE team_record = \"1–7\"" }
On week 7, what were the opponents?
CREATE TABLE table_25380472_2 (opponent VARCHAR, week VARCHAR)
{ "SQL_Query": "SELECT opponent FROM table_25380472_2 WHERE week = 7" }
On what game sites are there where the team record is 0–5?
CREATE TABLE table_25380472_2 (game_site VARCHAR, team_record VARCHAR)
{ "SQL_Query": "SELECT game_site FROM table_25380472_2 WHERE team_record = \"0–5\"" }
What game sites are where the team record is 1–6?
CREATE TABLE table_25380472_2 (game_site VARCHAR, team_record VARCHAR)
{ "SQL_Query": "SELECT game_site FROM table_25380472_2 WHERE team_record = \"1–6\"" }
In game site AOL Arena, who are all the opponents?
CREATE TABLE table_25380472_2 (opponent VARCHAR, game_site VARCHAR)
{ "SQL_Query": "SELECT opponent FROM table_25380472_2 WHERE game_site = \"AOL Arena\"" }
What organization had the founding date of 1998-11-08?
CREATE TABLE table_2538117_12 (organization VARCHAR, founding_date VARCHAR)
{ "SQL_Query": "SELECT organization FROM table_2538117_12 WHERE founding_date = \"1998-11-08\"" }
How many letters were given to the organization with a founding date of 1997-12-12?
CREATE TABLE table_2538117_12 (letters VARCHAR, founding_date VARCHAR)
{ "SQL_Query": "SELECT COUNT(letters) FROM table_2538117_12 WHERE founding_date = \"1997-12-12\"" }
What is the song choice where the original artist is Gino Paoli?
CREATE TABLE table_25374338_1 (song_choice VARCHAR, original_artist VARCHAR)
{ "SQL_Query": "SELECT COUNT(song_choice) FROM table_25374338_1 WHERE original_artist = \"Gino Paoli\"" }
What is the theme where the original artist is Noemi feat. Fiorella Mannoia?
CREATE TABLE table_25374338_1 (theme VARCHAR, original_artist VARCHAR)
{ "SQL_Query": "SELECT theme FROM table_25374338_1 WHERE original_artist = \"Noemi feat. Fiorella Mannoia\"" }
What is the song choice where the episode is Live Show 1?
CREATE TABLE table_25374338_1 (song_choice VARCHAR, episode VARCHAR)
{ "SQL_Query": "SELECT song_choice FROM table_25374338_1 WHERE episode = \"Live Show 1\"" }
What is the result where the original artist is Prince and the Revolution?
CREATE TABLE table_25374338_1 (result VARCHAR, original_artist VARCHAR)
{ "SQL_Query": "SELECT result FROM table_25374338_1 WHERE original_artist = \"Prince and The Revolution\"" }
What is the theme where the original artist is AC/DC?
CREATE TABLE table_25374338_1 (theme VARCHAR, original_artist VARCHAR)
{ "SQL_Query": "SELECT theme FROM table_25374338_1 WHERE original_artist = \"AC/DC\"" }
what type of organization is sigma phi omega?
CREATE TABLE table_2538117_2 (type VARCHAR, organization VARCHAR)
{ "SQL_Query": "SELECT type FROM table_2538117_2 WHERE organization = \"Sigma Phi Omega\"" }
how many types of organization were founded in san diego state university?
CREATE TABLE table_2538117_2 (type VARCHAR, founding_university VARCHAR)
{ "SQL_Query": "SELECT COUNT(type) FROM table_2538117_2 WHERE founding_university = \"San Diego State University\"" }
Name the season for position 4th
CREATE TABLE table_25375093_1 (season VARCHAR, position VARCHAR)
{ "SQL_Query": "SELECT COUNT(season) FROM table_25375093_1 WHERE position = \"4th\"" }
Name the least f/laps
CREATE TABLE table_25375093_1 (f_laps INTEGER)
{ "SQL_Query": "SELECT MIN(f_laps) FROM table_25375093_1" }