answer
stringlengths 18
557
| question
stringlengths 12
244
| context
stringlengths 27
489
|
|---|---|---|
SELECT season FROM table_name_88 WHERE finals = "out of playoffs."
|
Which Season has Finals of out of playoffs.?
|
CREATE TABLE table_name_88 (season VARCHAR, finals VARCHAR)
|
SELECT runner_s__up FROM table_name_37 WHERE date = "may 24, 1999"
|
Who is Runner(s)-up that has a Date of may 24, 1999?
|
CREATE TABLE table_name_37 (runner_s__up VARCHAR, date VARCHAR)
|
SELECT role FROM table_name_83 WHERE play = "tea and sympathy"
|
Tell me the role for tea and sympathy
|
CREATE TABLE table_name_83 (role VARCHAR, play VARCHAR)
|
SELECT AVG(top_25) FROM table_name_60 WHERE events < 12 AND top_5 > 0
|
What's the average Top-25, that has an Events that's smaller than 12, and has a Top-5 that is larger than 0?
|
CREATE TABLE table_name_60 (top_25 INTEGER, events VARCHAR, top_5 VARCHAR)
|
SELECT COUNT(year) FROM table_name_15 WHERE location = "metlife stadium" AND loser = "new york giants"
|
How many years did the new york giants lose at metlife stadium?
|
CREATE TABLE table_name_15 (year VARCHAR, location VARCHAR, loser VARCHAR)
|
SELECT location FROM table_26358264_2 WHERE fastest_qualifying = "Cancelled"
|
When cancelled is the fastest qualifying where is the location?
|
CREATE TABLE table_26358264_2 (location VARCHAR, fastest_qualifying VARCHAR)
|
SELECT to_par FROM table_name_23 WHERE place = "t9" AND player = "lee trevino"
|
What is To Par, when Place is "T9", and when Player is "Lee Trevino"?
|
CREATE TABLE table_name_23 (to_par VARCHAR, place VARCHAR, player VARCHAR)
|
SELECT week_10_nov_5 FROM table_name_71 WHERE week_15__final__dec_9 = "illinois (10-1)"
|
What is the week 10 result for the tean when the week 15 result is Illinois (10-1)?
|
CREATE TABLE table_name_71 (week_10_nov_5 VARCHAR, week_15__final__dec_9 VARCHAR)
|
SELECT league FROM table_17598822_11 WHERE player = "Paul Paton"
|
Name the league for paul paton
|
CREATE TABLE table_17598822_11 (league VARCHAR, player VARCHAR)
|
SELECT result FROM table_name_27 WHERE venue = "ulsan"
|
Which result has a Venue of ulsan?
|
CREATE TABLE table_name_27 (result VARCHAR, venue VARCHAR)
|
SELECT MAX(no) FROM table_16494599_5 WHERE years_for_grizzlies = "2000-2001"
|
what's the highest player number from the list from 2000-2001
|
CREATE TABLE table_16494599_5 (no INTEGER, years_for_grizzlies VARCHAR)
|
SELECT date FROM table_name_99 WHERE record = "8β10β6"
|
What is the Date of the game with a Record of 8β10β6?
|
CREATE TABLE table_name_99 (date VARCHAR, record VARCHAR)
|
SELECT position FROM table_name_17 WHERE overall < 410 AND round < 5 AND school_club_team = "oklahoma state"
|
What position and school/club team of Oklahoma state has an overall less than 410 and a round smaller than 5?
|
CREATE TABLE table_name_17 (position VARCHAR, school_club_team VARCHAR, overall VARCHAR, round VARCHAR)
|
SELECT score FROM table_name_10 WHERE visitor = "winnipeg jets" AND date = "april 7"
|
What is the Score that has a Winnipeg Jets as Visitor on april 7?
|
CREATE TABLE table_name_10 (score VARCHAR, visitor VARCHAR, date VARCHAR)
|
SELECT attendance FROM table_name_63 WHERE date = "april 12"
|
Can you tell me the Attendance that has the Date of april 12?
|
CREATE TABLE table_name_63 (attendance VARCHAR, date VARCHAR)
|
SELECT county FROM table_name_87 WHERE mascot = "trojans"
|
Which county do the Trojans come from?
|
CREATE TABLE table_name_87 (county VARCHAR, mascot VARCHAR)
|
SELECT district FROM table_1342013_41 WHERE incumbent = "Tom J. Murray"
|
What district is tom j. murray from?
|
CREATE TABLE table_1342013_41 (district VARCHAR, incumbent VARCHAR)
|
SELECT COUNT(stacks) FROM table_23958917_1 WHERE unit_capacity__2009_ = "1 & 2 235 MW 3 & 4 88.2 MW"
|
Name the number of stacks for 1 & 2 235 mw 3 & 4 88.2 mw
|
CREATE TABLE table_23958917_1 (stacks VARCHAR, unit_capacity__2009_ VARCHAR)
|
SELECT COUNT(player) FROM table_23670057_7 WHERE height__m_ = "2.07"
|
How many players have a height of 2.07?
|
CREATE TABLE table_23670057_7 (player VARCHAR, height__m_ VARCHAR)
|
SELECT name FROM buildings WHERE Status = "on-hold" ORDER BY Stories
|
Please show the names of the buildings whose status is "on-hold", in ascending order of stories.
|
CREATE TABLE buildings (name VARCHAR, Status VARCHAR, Stories VARCHAR)
|
SELECT MIN(goals_against) FROM table_name_97 WHERE lost > 27
|
What is the fewest goals against for teams with more than 27 losses?
|
CREATE TABLE table_name_97 (goals_against INTEGER, lost INTEGER)
|
SELECT record FROM table_name_54 WHERE loss = "kendrick (11β8)"
|
Loss of kendrick (11β8) had what record?
|
CREATE TABLE table_name_54 (record VARCHAR, loss VARCHAR)
|
SELECT MIN(itv1_weekly_ranking) FROM table_25664518_3 WHERE viewers__millions_ = "5.42"
|
What is the minimum ITV1 ranking for the episode having viewership of 5.42 million?
|
CREATE TABLE table_25664518_3 (itv1_weekly_ranking INTEGER, viewers__millions_ VARCHAR)
|
SELECT points_classification FROM table_name_31 WHERE stage = "16"
|
Name the points classification of stage 16
|
CREATE TABLE table_name_31 (points_classification VARCHAR, stage VARCHAR)
|
SELECT t2.product_details, t2.product_id FROM order_items AS t1 JOIN products AS t2 ON t1.product_id = t2.product_id GROUP BY t1.product_id ORDER BY SUM(t1.order_quantity) LIMIT 1
|
Find the name and ID of the product whose total order quantity is the largest.
|
CREATE TABLE order_items (product_id VARCHAR, order_quantity INTEGER); CREATE TABLE products (product_details VARCHAR, product_id VARCHAR)
|
SELECT opponent FROM table_name_14 WHERE date = "september 14, 2003"
|
Which opponent has September 14, 2003 as the date?
|
CREATE TABLE table_name_14 (opponent VARCHAR, date VARCHAR)
|
SELECT hdd_capacity FROM table_name_7 WHERE _number_fdd > 0 AND fdd_capacity__each_ = "710kb"
|
Tell me the HDD capacity for # FDD larger than 0 when FDD capacity is 710kb
|
CREATE TABLE table_name_7 (hdd_capacity VARCHAR, _number_fdd VARCHAR, fdd_capacity__each_ VARCHAR)
|
SELECT COUNT(grid) FROM table_name_6 WHERE laps = 14 AND time = "+29.483"
|
What is the total grid number that has 14 laps and a time of +29.483?
|
CREATE TABLE table_name_6 (grid VARCHAR, laps VARCHAR, time VARCHAR)
|
SELECT COUNT(total_rebounds) FROM table_name_51 WHERE player = "herb estes"
|
How many rebounds have a Player of herb estes?
|
CREATE TABLE table_name_51 (total_rebounds VARCHAR, player VARCHAR)
|
SELECT format FROM table_name_22 WHERE interactivity_support = "no" AND word_wrap_support = "yes" AND image_support = "yes" AND open_standard = "yes"
|
Which Format has an Interactivity support of no, a Word wrap support of yes, an Image support of yes, and an Open standard of yes?
|
CREATE TABLE table_name_22 (format VARCHAR, open_standard VARCHAR, image_support VARCHAR, interactivity_support VARCHAR, word_wrap_support VARCHAR)
|
SELECT nominated_work FROM table_name_95 WHERE year < 2003
|
What was the Nominated Work earlier than 2003?
|
CREATE TABLE table_name_95 (nominated_work VARCHAR, year INTEGER)
|
SELECT stage AS winner FROM table_name_48 WHERE year = 2013
|
Who was the winner in 2013?
|
CREATE TABLE table_name_48 (stage VARCHAR, year VARCHAR)
|
SELECT record FROM table_name_89 WHERE february = 10
|
What is the record after the game on Feb 10?
|
CREATE TABLE table_name_89 (record VARCHAR, february VARCHAR)
|
SELECT agg FROM table_name_34 WHERE team_2 = "asl sport guyanais"
|
Name the agg for team 2 of asl sport guyanais.
|
CREATE TABLE table_name_34 (agg VARCHAR, team_2 VARCHAR)
|
SELECT new_entries_this_round FROM table_1859269_1 WHERE round = "Semi-finals"
|
If the round is the semi-finals, what are the new entries this round?
|
CREATE TABLE table_1859269_1 (new_entries_this_round VARCHAR, round VARCHAR)
|
SELECT AVG(rank) FROM table_name_73 WHERE bronze > 0 AND gold > 1 AND nation = "japan" AND silver < 0
|
What is the rank when bronze was more than 0, gold more than 1, Nation is japan, and silver less than 0?
|
CREATE TABLE table_name_73 (rank INTEGER, silver VARCHAR, nation VARCHAR, bronze VARCHAR, gold VARCHAR)
|
SELECT round FROM table_name_58 WHERE position = "left wing"
|
In what round was a left wing drafted?
|
CREATE TABLE table_name_58 (round VARCHAR, position VARCHAR)
|
SELECT MIN(Otl) FROM table_1888165_1
|
What was the minimum OTL amount?
|
CREATE TABLE table_1888165_1 (Otl INTEGER)
|
SELECT part_3 FROM table_20159025_1 WHERE driver = "Heikki Kovalainen"
|
What was the time in part 3 when Heikki Kovalainen was the driver?
|
CREATE TABLE table_20159025_1 (part_3 VARCHAR, driver VARCHAR)
|
SELECT AVG(rank) FROM table_name_79 WHERE lane = 1
|
What is the average rank of a swimmer in lane 1?
|
CREATE TABLE table_name_79 (rank INTEGER, lane VARCHAR)
|
SELECT MIN(year) FROM table_name_97 WHERE working_horses = "3900.1" AND cows < 3852.1
|
What is the earliest year that has fewer than 3852.1 cows and 3900.1 working horses?
|
CREATE TABLE table_name_97 (year INTEGER, working_horses VARCHAR, cows VARCHAR)
|
SELECT episode FROM table_2102714_1 WHERE viewers__in_millions_ = "9.7"
|
What episode had 9.7 million viewers?
|
CREATE TABLE table_2102714_1 (episode VARCHAR, viewers__in_millions_ VARCHAR)
|
SELECT position FROM table_name_97 WHERE player = "max redfield"
|
What position did Max Redfield play?
|
CREATE TABLE table_name_97 (position VARCHAR, player VARCHAR)
|
SELECT away_team FROM table_name_23 WHERE home_team = "wigan athletic"
|
What is the away team for the home team wigan athletic?
|
CREATE TABLE table_name_23 (away_team VARCHAR, home_team VARCHAR)
|
SELECT lead FROM table_name_5 WHERE event = "2008 wcc"
|
Who was the lead for the 2008 WCC?
|
CREATE TABLE table_name_5 (lead VARCHAR, event VARCHAR)
|
SELECT number_of_deputies FROM table_name_44 WHERE election_date = 1964
|
What were the number of deputies for the 1964 election year?
|
CREATE TABLE table_name_44 (number_of_deputies VARCHAR, election_date VARCHAR)
|
SELECT location FROM table_name_5 WHERE manager = "job dragtsma"
|
What is the Location of the Stadium where Job Dragtsma is Manager?
|
CREATE TABLE table_name_5 (location VARCHAR, manager VARCHAR)
|
SELECT date FROM table_name_37 WHERE week = 17
|
On what date was the week 17 game?
|
CREATE TABLE table_name_37 (date VARCHAR, week VARCHAR)
|
SELECT MAX(jerseys) FROM table_name_72 WHERE points = 0 AND different_holders < 3 AND giro_wins < 1 AND young_rider > 1
|
what is the highest jersey when points is 0, different holders is less than 3, giro wins is less than 1 and young rider is more than 1?
|
CREATE TABLE table_name_72 (jerseys INTEGER, young_rider VARCHAR, giro_wins VARCHAR, points VARCHAR, different_holders VARCHAR)
|
SELECT AVG(body_length_mm) FROM table_name_9 WHERE lead_pitch_mm < 0.5
|
Which Body Length/mm has a Lead Pitch/mm smaller than 0.5?
|
CREATE TABLE table_name_9 (body_length_mm INTEGER, lead_pitch_mm INTEGER)
|
SELECT MIN(no) FROM table_29329432_1 WHERE production_code = "3X6266"
|
Name the least number for production code 3x6266
|
CREATE TABLE table_29329432_1 (no INTEGER, production_code VARCHAR)
|
SELECT purse___us$__ FROM table_name_30 WHERE dist = "1 mile" AND winning_horse = "crafty bear"
|
How much money did Crafty Bear wins with a dist of 1 mile?
|
CREATE TABLE table_name_30 (purse___us$__ VARCHAR, dist VARCHAR, winning_horse VARCHAR)
|
SELECT weekly_rank___number_ FROM table_name_53 WHERE share = 9 AND viewers__m_ = 9.42
|
What is the weekly rank for a share of 9 and 9.42 million viewers?
|
CREATE TABLE table_name_53 (weekly_rank___number_ VARCHAR, share VARCHAR, viewers__m_ VARCHAR)
|
SELECT opening_date FROM table_name_80 WHERE hotel_rooms = 727
|
When did the hotel with 727 rooms open?
|
CREATE TABLE table_name_80 (opening_date VARCHAR, hotel_rooms VARCHAR)
|
SELECT total__kg_ FROM table_name_49 WHERE clean_ & _jerk = 135 AND snatch = 115
|
What is the total associated with a Clean & jerk of 135, and a Snatch of 115?
|
CREATE TABLE table_name_49 (total__kg_ VARCHAR, snatch VARCHAR, clean_ VARCHAR, _jerk VARCHAR)
|
SELECT driver FROM table_name_48 WHERE race_2 = "14"
|
What is Driver, when Race 2 is 14?
|
CREATE TABLE table_name_48 (driver VARCHAR, race_2 VARCHAR)
|
SELECT translation FROM table_name_81 WHERE unit = "chetvert"
|
What is the translation of chetvert?
|
CREATE TABLE table_name_81 (translation VARCHAR, unit VARCHAR)
|
SELECT COUNT(date_released) FROM table_17798548_4 WHERE season = "The Complete 4th Series"
|
On how many dates was the complete 4th series released?
|
CREATE TABLE table_17798548_4 (date_released VARCHAR, season VARCHAR)
|
SELECT leader_at_the_summit FROM table_name_23 WHERE year = 2005
|
Who was the leader at the summit for the race in 2005?
|
CREATE TABLE table_name_23 (leader_at_the_summit VARCHAR, year VARCHAR)
|
SELECT segment_c FROM table_name_30 WHERE episode = 160
|
Which items in segment C is episode 160?
|
CREATE TABLE table_name_30 (segment_c VARCHAR, episode VARCHAR)
|
SELECT COUNT(crowd) FROM table_name_70 WHERE venue = "mcg"
|
What was the attendance when the VFL played MCG?
|
CREATE TABLE table_name_70 (crowd VARCHAR, venue VARCHAR)
|
SELECT first_name, last_name FROM employees WHERE department_id = 70 OR department_id = 90
|
What are the first and last name for those employees who works either in department 70 or 90?
|
CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, department_id VARCHAR)
|
SELECT school FROM table_name_11 WHERE enrollment > 473 AND ihsaa_class = "aaa" AND _number___county = "72 scott"
|
What school in 72 Scott county has an enrollment more than 473 with an AAA IHSAA Class?
|
CREATE TABLE table_name_11 (school VARCHAR, _number___county VARCHAR, enrollment VARCHAR, ihsaa_class VARCHAR)
|
SELECT result FROM table_name_41 WHERE losses = "did not qualify"
|
What is Result, when Losses is "Did Not Qualify"?
|
CREATE TABLE table_name_41 (result VARCHAR, losses VARCHAR)
|
SELECT date FROM table_name_18 WHERE opponent = "lizards" AND result = "w 18-17"
|
What is the date of the game against the Lizards with a result of w 18-17?
|
CREATE TABLE table_name_18 (date VARCHAR, opponent VARCHAR, result VARCHAR)
|
SELECT MAX(no_in_season) FROM table_16390576_3 WHERE directed_by = "Jamie Babbit"
|
what is the latest episode in season 2 directed by jamie babbit?
|
CREATE TABLE table_16390576_3 (no_in_season INTEGER, directed_by VARCHAR)
|
SELECT MIN(joined) FROM table_1973729_1 WHERE nickname = "Lions"
|
In what year did the Lions join?
|
CREATE TABLE table_1973729_1 (joined INTEGER, nickname VARCHAR)
|
SELECT rider FROM table_name_30 WHERE laps < 30 AND manufacturer = "yamaha" AND time = "accident" AND grid > 3
|
Who was the rider who had less than 30 laps, ended in an accident with a car manufactured by yamaha on a grid larger than 3?
|
CREATE TABLE table_name_30 (rider VARCHAR, grid VARCHAR, time VARCHAR, laps VARCHAR, manufacturer VARCHAR)
|
SELECT sydney FROM table_name_13 WHERE gold_coast = "yes" AND adelaide = "no" AND auckland = "yes"
|
Which Sydney has a Gold Coast of yes, an Adelaide of no, and an Auckland of yes?
|
CREATE TABLE table_name_13 (sydney VARCHAR, auckland VARCHAR, gold_coast VARCHAR, adelaide VARCHAR)
|
SELECT SUM(year) FROM table_name_36 WHERE championship = "australian open" AND outcome = "runner-up" AND score_in_final = "3-6, 6-3, 6-2"
|
What is the sum of Year(s), when Championship is "Australian Open", when Outcome is "Runner-Up", and when Score in Final is 3-6, 6-3, 6-2?
|
CREATE TABLE table_name_36 (year INTEGER, score_in_final VARCHAR, championship VARCHAR, outcome VARCHAR)
|
SELECT upper_stage FROM table_name_86 WHERE launches_to_date = 0 AND version = "532"
|
What Upper stage has Launches to date of 0, and Version of 532?
|
CREATE TABLE table_name_86 (upper_stage VARCHAR, launches_to_date VARCHAR, version VARCHAR)
|
SELECT opponent FROM table_name_66 WHERE october = 29
|
Which Opponent is on October of 29?
|
CREATE TABLE table_name_66 (opponent VARCHAR, october VARCHAR)
|
SELECT event FROM table_name_24 WHERE skip = "john morris" AND second = "matt st. louis"
|
Which event shows Matt St. Louis in second and a skip of John Morris?
|
CREATE TABLE table_name_24 (event VARCHAR, skip VARCHAR, second VARCHAR)
|
SELECT song FROM table_name_73 WHERE televoting__votes_ = "2nd (25,517)"
|
What song was 2nd (25,517) in televoting (votes)?
|
CREATE TABLE table_name_73 (song VARCHAR, televoting__votes_ VARCHAR)
|
SELECT constructor FROM table_1140119_5 WHERE race_name = "IV J.C.C. Jersey Road Race"
|
Would built the winning car in the IV J.C.C. Jersey Road Race?
|
CREATE TABLE table_1140119_5 (constructor VARCHAR, race_name VARCHAR)
|
SELECT current_branch_opened FROM table_name_22 WHERE branch = "midland library"
|
What is Current Branch Opened, when Branch is Midland Library?
|
CREATE TABLE table_name_22 (current_branch_opened VARCHAR, branch VARCHAR)
|
SELECT MAX(october) FROM table_name_41 WHERE game = 9
|
Which game has the highest score in October with 9?
|
CREATE TABLE table_name_41 (october INTEGER, game VARCHAR)
|
SELECT COUNT(city_neighborhood) FROM table_22771048_4 WHERE station = "Hospital"
|
How many neighborhoods have a station proposed at a Hospital?
|
CREATE TABLE table_22771048_4 (city_neighborhood VARCHAR, station VARCHAR)
|
SELECT call_sign FROM table_name_41 WHERE frequency_mhz > 98.5 AND erp_w < 155
|
Which call sign has a frequency greater than 98.5MHz and ERP W under 155?
|
CREATE TABLE table_name_41 (call_sign VARCHAR, frequency_mhz VARCHAR, erp_w VARCHAR)
|
SELECT city FROM table_name_86 WHERE _number_of_titles < 17 AND last > 2005 AND sport = "boys basketball"
|
What city is the school that had less than 17 titles in boys basketball with the last title being after 2005?
|
CREATE TABLE table_name_86 (city VARCHAR, sport VARCHAR, _number_of_titles VARCHAR, last VARCHAR)
|
SELECT type FROM table_name_79 WHERE res = "win" AND opponent = "michael gomez"
|
What is the type of the match with a win result and Michael Gomez as the opponent?
|
CREATE TABLE table_name_79 (type VARCHAR, res VARCHAR, opponent VARCHAR)
|
SELECT name FROM table_name_96 WHERE title = "duke" AND royal_house = "jiang"
|
What was the name listed for the royal house of jiang and a title of duke?
|
CREATE TABLE table_name_96 (name VARCHAR, title VARCHAR, royal_house VARCHAR)
|
SELECT t1.catalog_entry_name FROM Catalog_Contents AS t1 JOIN Catalog_Contents_Additional_Attributes AS t2 ON t1.catalog_entry_id = t2.catalog_entry_id WHERE t2.attribute_value = (SELECT attribute_value FROM Catalog_Contents_Additional_Attributes GROUP BY attribute_value ORDER BY COUNT(*) DESC LIMIT 1)
|
What are the entry names of catalog with the attribute possessed by most entries.
|
CREATE TABLE Catalog_Contents_Additional_Attributes (catalog_entry_id VARCHAR, attribute_value VARCHAR); CREATE TABLE Catalog_Contents (catalog_entry_name VARCHAR, catalog_entry_id VARCHAR); CREATE TABLE Catalog_Contents_Additional_Attributes (attribute_value VARCHAR)
|
SELECT MAX(drawn) FROM table_name_39 WHERE points = 14 AND games < 7
|
What is the highest number of draws with 14 points and less than 7 games?
|
CREATE TABLE table_name_39 (drawn INTEGER, points VARCHAR, games VARCHAR)
|
SELECT semifinalists FROM table_name_95 WHERE surface = "hard" AND winner_and_score = "pete sampras 6β3, 3β6, 6β3"
|
Which Semifinalists have a Surface of hard, and a Winner and score of pete sampras 6β3, 3β6, 6β3?
|
CREATE TABLE table_name_95 (semifinalists VARCHAR, surface VARCHAR, winner_and_score VARCHAR)
|
SELECT COUNT(top_25) FROM table_name_93 WHERE events < 2
|
What is the total number of top-25 a tournament with less than 2 events has?
|
CREATE TABLE table_name_93 (top_25 VARCHAR, events INTEGER)
|
SELECT color_commentator_s_ FROM table_name_16 WHERE year = 2008
|
Who is the color commentator in 2008?
|
CREATE TABLE table_name_16 (color_commentator_s_ VARCHAR, year VARCHAR)
|
SELECT date FROM table_name_68 WHERE week < 13 AND game_site = "lp field" AND opponent = "houston texans"
|
When did the Titans play the Houston Texans at LP Field before Week 13?
|
CREATE TABLE table_name_68 (date VARCHAR, opponent VARCHAR, week VARCHAR, game_site VARCHAR)
|
SELECT T1.County_name FROM county AS T1 JOIN election AS T2 ON T1.County_id = T2.District GROUP BY T1.County_id HAVING COUNT(*) >= 2
|
Show the names of counties that have at least two delegates.
|
CREATE TABLE election (District VARCHAR); CREATE TABLE county (County_name VARCHAR, County_id VARCHAR)
|
SELECT award FROM table_name_23 WHERE recipient = "hannah gal"
|
What award was Hannah Gal the recipient of?
|
CREATE TABLE table_name_23 (award VARCHAR, recipient VARCHAR)
|
SELECT player FROM table_11734041_11 WHERE height_in_ft = "6-0"
|
Which player had a height of 6-0?
|
CREATE TABLE table_11734041_11 (player VARCHAR, height_in_ft VARCHAR)
|
SELECT AVG(top_5) FROM table_name_66 WHERE top_25 = 0 AND wins < 0
|
What is the average value for Top-5, when the value for Top-25 is 0, and the value for Wins is less than 0?
|
CREATE TABLE table_name_66 (top_5 INTEGER, top_25 VARCHAR, wins VARCHAR)
|
SELECT european_competitions FROM table_name_85 WHERE pos = 6
|
Which European competitions have a Pos of 6?
|
CREATE TABLE table_name_85 (european_competitions VARCHAR, pos VARCHAR)
|
SELECT d_42_β FROM table_name_6 WHERE d_45_β = "r 16"
|
What is the D 42 β number when the D 45 β is r 16?
|
CREATE TABLE table_name_6 (d_42_β VARCHAR, d_45_β VARCHAR)
|
SELECT constituency_number FROM table_name_65 WHERE reserved_for___sc___st__none_ = "none" AND name = "katol"
|
What is the constituency number with a reserved for ( SC / ST /None) of none, for Katol?
|
CREATE TABLE table_name_65 (constituency_number VARCHAR, reserved_for___sc___st__none_ VARCHAR, name VARCHAR)
|
SELECT to_par FROM table_name_5 WHERE total < 296
|
Which to par has a total less than 296?
|
CREATE TABLE table_name_5 (to_par VARCHAR, total INTEGER)
|
SELECT term FROM table_name_6 WHERE hometown = "anchorage" AND name = "bruce biers kendall"
|
What was the term of Bruce Biers Kendall whose hometown is Anchorage?
|
CREATE TABLE table_name_6 (term VARCHAR, hometown VARCHAR, name VARCHAR)
|
SELECT population FROM table_name_51 WHERE germans = "87.5%"
|
What is the population of the year featuring an 87.5% German population?
|
CREATE TABLE table_name_51 (population VARCHAR, germans VARCHAR)
|
SELECT COUNT(floor) FROM table_18662026_1 WHERE parallel_bars = "61.500"
|
If the parallel bars numbers is 61.500, what is the total number for the flood?
|
CREATE TABLE table_18662026_1 (floor VARCHAR, parallel_bars VARCHAR)
|
SELECT lijsttrekker FROM table_name_51 WHERE year > 1990 AND chair = "ingrid van engelshoven"
|
What is Lijsttrekker, when Year is after 1990, and when Chair is "Ingrid Van Engelshoven"?
|
CREATE TABLE table_name_51 (lijsttrekker VARCHAR, year VARCHAR, chair VARCHAR)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.