instruction
stringlengths
5
766
input
stringlengths
38
5.51k
response
stringlengths
4
3.91k
What is the total medal count for the nation that has 5 gold?
CREATE TABLE table_name_91 ( total VARCHAR, gold VARCHAR )
SELECT total FROM table_name_91 WHERE gold = "5"
who is the away team when played at junction oval?
CREATE TABLE table_name_41 ( away_team VARCHAR, venue VARCHAR )
SELECT away_team FROM table_name_41 WHERE venue = "junction oval"
What is the Record of the game with an Attendance of more than 16,124 and a Score of 6 3?
CREATE TABLE table_79632 ( "Date" text, "Opponent" text, "Score" text, "Loss" text, "Attendance" real, "Record" text, "Arena" text, "Points" real )
SELECT "Record" FROM table_79632 WHERE "Attendance" > '16,124' AND "Score" = '6–3'
Which 3rd run has rank of 8?
CREATE TABLE table_79697 ( "Rank" real, "Name" text, "1st run" text, "2nd run" text, "3rd run" text, "Total" real )
SELECT "3rd run" FROM table_79697 WHERE "Rank" = '8'
How many average total matches have league cup as the competition, with a draw greater than 0?
CREATE TABLE table_name_34 ( total_matches INTEGER, competition VARCHAR, draw VARCHAR )
SELECT AVG(total_matches) FROM table_name_34 WHERE competition = "league cup" AND draw > 0
Which Tankers have a Hazmat of , and Platforms of , and a Staffing of volunteer?
CREATE TABLE table_name_9 ( tankers VARCHAR, staffing VARCHAR, hazmat VARCHAR, platforms VARCHAR )
SELECT tankers FROM table_name_9 WHERE hazmat = "–" AND platforms = "–" AND staffing = "volunteer"
Which Score has a Place of t1, and a Player of scott simpson?
CREATE TABLE table_9376 ( "Place" text, "Player" text, "Country" text, "Score" real, "To par" text )
SELECT COUNT("Score") FROM table_9376 WHERE "Place" = 't1' AND "Player" = 'scott simpson'
Which Date has a Result of w, and a Score of 3-0?
CREATE TABLE table_37479 ( "Date" text, "City" text, "Result" text, "Score" text, "Competition" text )
SELECT "Date" FROM table_37479 WHERE "Result" = 'w' AND "Score" = '3-0'
What is the highest number of viewers for a rating greater than 9.4?
CREATE TABLE table_51415 ( "Air Date" text, "Timeslot (EST)" text, "Season" text, "Rating" real, "Share" real, "18-49 (Rating/Share)" text, "Viewers (m)" real, "Weekly Rank (#)" text )
SELECT MAX("Viewers (m)") FROM table_51415 WHERE "Rating" > '9.4'
Which location held the bout that led to a 4-3 record?
CREATE TABLE table_name_19 ( location VARCHAR, record VARCHAR )
SELECT location FROM table_name_19 WHERE record = "4-3"
What is the largest ethnic group (2002) when cyrillic name is ?
CREATE TABLE table_3342 ( "Settlement" text, "Cyrillic Name" text, "Type" text, "Population (2011)" real, "Largest ethnic group (2002)" text, "Dominant religion (2002)" text )
SELECT "Largest ethnic group (2002)" FROM table_3342 WHERE "Cyrillic Name" = 'БрСстач'
Find the first and last name of students who are not in the largest major.
CREATE TABLE dorm ( dormid number, dorm_name text, student_capacity number, gender text ) CREATE TABLE student ( stuid number, lname text, fname text, age number, sex text, major number, advisor number, city_code text ) CREATE TABLE dorm_amenity ( amenid number, amenity_name text ) CREATE TABLE has_amenity ( dormid number, amenid number ) CREATE TABLE lives_in ( stuid number, dormid number, room_number number )
SELECT fname, lname FROM student WHERE major <> (SELECT major FROM student GROUP BY major ORDER BY COUNT(*) DESC LIMIT 1)
Which allergy type has most number of allergies?
CREATE TABLE has_allergy ( stuid number, allergy text ) CREATE TABLE student ( stuid number, lname text, fname text, age number, sex text, major number, advisor number, city_code text ) CREATE TABLE allergy_type ( allergy text, allergytype text )
SELECT allergytype FROM allergy_type GROUP BY allergytype ORDER BY COUNT(*) DESC LIMIT 1
What is the total average for swimsuits smaller than 9.62 in Colorado?
CREATE TABLE table_58555 ( "Country" text, "Interview" real, "Swimsuit" real, "Evening Gown" real, "Average" real )
SELECT SUM("Average") FROM table_58555 WHERE "Swimsuit" < '9.62' AND "Country" = 'colorado'
Tell me the average top 25 with events of 5 and cuts madde less than 3
CREATE TABLE table_name_33 ( top_25 INTEGER, events VARCHAR, cuts_made VARCHAR )
SELECT AVG(top_25) FROM table_name_33 WHERE events = 5 AND cuts_made < 3
What's the least amount of goals for a game that had a tied bigger than 15?
CREATE TABLE table_10888 ( "Season" text, "Games" real, "Lost" real, "Tied" real, "Points" real, "Goals for" real, "Goals against" real, "Standing" text )
SELECT MIN("Goals for") FROM table_10888 WHERE "Tied" > '15'
What are the highest points with a Chassis of gordini t16, and a Year smaller than 1954?
CREATE TABLE table_15405 ( "Year" real, "Team" text, "Chassis" text, "Engine" text, "Points" real )
SELECT MAX("Points") FROM table_15405 WHERE "Chassis" = 'gordini t16' AND "Year" < '1954'
Who were the comedians during the episode located in Birmingham Hippodrome?
CREATE TABLE table_2774 ( "Episode" text, "Location" text, "Headliner" text, "Comedians" text, "Airdate" text )
SELECT "Comedians" FROM table_2774 WHERE "Location" = 'Birmingham Hippodrome'
what is the lowest round2 when round5 is 71 and round4 is more than 64?
CREATE TABLE table_8511 ( "Rank" real, "Team" text, "Round1" real, "Round2" real, "Round3" real, "Round4" real, "Round5" real, "Total Points" real )
SELECT MIN("Round2") FROM table_8511 WHERE "Round5" = '71' AND "Round4" > '64'
A bar chart showing the number of male and female faculty, rank y-axis in asc order.
CREATE TABLE Faculty ( FacID INTEGER, Lname VARCHAR(15), Fname VARCHAR(15), Rank VARCHAR(15), Sex VARCHAR(1), Phone INTEGER, Room VARCHAR(5), Building VARCHAR(13) ) CREATE TABLE Student ( StuID INTEGER, LName VARCHAR(12), Fname VARCHAR(12), Age INTEGER, Sex VARCHAR(1), Major INTEGER, Advisor INTEGER, city_code VARCHAR(3) ) CREATE TABLE Participates_in ( stuid INTEGER, actid INTEGER ) CREATE TABLE Activity ( actid INTEGER, activity_name varchar(25) ) CREATE TABLE Faculty_Participates_in ( FacID INTEGER, actid INTEGER )
SELECT Sex, COUNT(*) FROM Faculty GROUP BY Sex ORDER BY COUNT(*)
Who is the Second when Michel Gribi is the lead?
CREATE TABLE table_name_90 ( second VARCHAR, lead VARCHAR )
SELECT second FROM table_name_90 WHERE lead = "michel gribi"
What is the sum of the lowest in attendance when the average is 1,166 and most in attendance is less than 2,215?
CREATE TABLE table_10257 ( "Team" text, "Stadium" text, "Capacity" real, "Highest" real, "Lowest" real, "Average" real )
SELECT SUM("Lowest") FROM table_10257 WHERE "Average" = '1,166' AND "Highest" < '2,215'
What was the score when the record was 22-53?
CREATE TABLE table_25849 ( "Game" real, "Date" text, "Team" text, "Score" text, "High points" text, "High rebounds" text, "High assists" text, "Location Attendance" text, "Record" text )
SELECT "Score" FROM table_25849 WHERE "Record" = '22-53'
What is the record for the result w 33-3?
CREATE TABLE table_name_4 ( record VARCHAR, result VARCHAR )
SELECT record FROM table_name_4 WHERE result = "w 33-3"
What surface was the April 24, 2003 match played on?
CREATE TABLE table_51661 ( "Edition" text, "Round" text, "Date" text, "Surface" text, "Opponent" text, "Result" text )
SELECT "Surface" FROM table_51661 WHERE "Date" = 'april 24, 2003'
For those records from the products and each product's manufacturer, give me the comparison about the average of code over the headquarter , and group by attribute headquarter by a bar chart, I want to order by the y axis from low to high please.
CREATE TABLE Products ( Code INTEGER, Name VARCHAR(255), Price DECIMAL, Manufacturer INTEGER ) CREATE TABLE Manufacturers ( Code INTEGER, Name VARCHAR(255), Headquarter VARCHAR(255), Founder VARCHAR(255), Revenue REAL )
SELECT T2.Headquarter, T1.Code FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY T2.Headquarter ORDER BY T1.Code
How many flights in each destination city? Return a bar chart, and list in descending by the y axis please.
CREATE TABLE flight ( flno number(4,0), origin varchar2(20), destination varchar2(20), distance number(6,0), departure_date date, arrival_date date, price number(7,2), aid number(9,0) ) CREATE TABLE employee ( eid number(9,0), name varchar2(30), salary number(10,2) ) CREATE TABLE aircraft ( aid number(9,0), name varchar2(30), distance number(6,0) ) CREATE TABLE certificate ( eid number(9,0), aid number(9,0) )
SELECT destination, COUNT(destination) FROM flight GROUP BY destination ORDER BY COUNT(destination) DESC
Which was the position for overall less than 254, round less than 5 and pick number less than 13?
CREATE TABLE table_71385 ( "Round" real, "Pick #" real, "Overall" real, "Name" text, "Position" text, "College" text )
SELECT "Position" FROM table_71385 WHERE "Overall" < '254' AND "Round" < '5' AND "Pick #" < '13'
What is the diameter for 1997 when longitude is 212.0e and latitude is 47.0n?
CREATE TABLE table_name_50 ( diameter__km_ INTEGER, latitude VARCHAR, year_named VARCHAR, longitude VARCHAR )
SELECT MIN(diameter__km_) FROM table_name_50 WHERE year_named = 1997 AND longitude = "212.0e" AND latitude = "47.0n"
How few km 2 does the area with Nay Pyi Taw as capital cover?
CREATE TABLE table_4093 ( "Country" text, "Area (km 2 )" real, "Population(2012)" real, "Density (/km 2 )" real, "GDP (nominal), USD (2012)" text, "GDP (nominal) per capita, USD (2012)" text, "HDI (2012)" text, "Capital" text )
SELECT MIN("Area (km 2 )") FROM table_4093 WHERE "Capital" = 'Nay Pyi Taw'
What is the away team's score when the Home team score is 14.18 (102)?
CREATE TABLE table_57966 ( "Home team" text, "Home team score" text, "Away team" text, "Away team score" text, "Venue" text, "Crowd" real, "Date" text )
SELECT "Away team score" FROM table_57966 WHERE "Home team score" = '14.18 (102)'
What's the report for the race name, XIII Grand Prix de l'Albigeois?
CREATE TABLE table_1140117_5 ( report VARCHAR, race_name VARCHAR )
SELECT report FROM table_1140117_5 WHERE race_name = "XIII Grand Prix de l'Albigeois"
Which company launched in 1996 and has a Hanzi of ?
CREATE TABLE table_name_36 ( name VARCHAR, launch VARCHAR, hanzi VARCHAR )
SELECT name FROM table_name_36 WHERE launch = "1996" AND hanzi = "净凰卫视中文台"
what place has score 66-74-68-73=281
CREATE TABLE table_name_74 ( place VARCHAR, score VARCHAR )
SELECT place FROM table_name_74 WHERE score = 66 - 74 - 68 - 73 = 281
What is the attendance at the game where San Jose was the visitor on May 4?
CREATE TABLE table_name_32 ( attendance VARCHAR, visitor VARCHAR, date VARCHAR )
SELECT attendance FROM table_name_32 WHERE visitor = "san jose" AND date = "may 4"
What is the hometown of the player who is headed to Duke?
CREATE TABLE table_52468 ( "Player" text, "Height" text, "School" text, "Hometown" text, "College" text )
SELECT "Hometown" FROM table_52468 WHERE "College" = 'duke'
what is the fuel propulsion where the fleet series (quantity) is 310-329 (20)?
CREATE TABLE table_10007452_3 ( fuel_propulsion VARCHAR, fleet_series__quantity_ VARCHAR )
SELECT fuel_propulsion FROM table_10007452_3 WHERE fleet_series__quantity_ = "310-329 (20)"
What is the person born in Australia, rick springfield notable for?
CREATE TABLE table_34689 ( "Name" text, "Born \u2013 Died" text, "Notable for" text, "Connection with Australia" text, "Connection with America" text )
SELECT "Notable for" FROM table_34689 WHERE "Connection with Australia" = 'born in australia' AND "Name" = 'rick springfield'
Which country had a place of t1, as well as a score of 72-68-70-73=283?
CREATE TABLE table_50932 ( "Place" text, "Player" text, "Country" text, "Score" text, "To par" text, "Money ( $ )" text )
SELECT "Country" FROM table_50932 WHERE "Place" = 't1' AND "Score" = '72-68-70-73=283'
Which Centre has a Rank of 42?
CREATE TABLE table_name_34 ( centre VARCHAR, rank VARCHAR )
SELECT centre FROM table_name_34 WHERE rank = 42
What is the Country when the IATA shows cju?
CREATE TABLE table_38159 ( "City" text, "Country" text, "IATA" text, "ICAO" text, "Airport" text )
SELECT "Country" FROM table_38159 WHERE "IATA" = 'cju'
what is the episode title on original air date of September 30, 2007?
CREATE TABLE table_23799417_2 ( title VARCHAR, original_airing VARCHAR )
SELECT title FROM table_23799417_2 WHERE original_airing = "September 30, 2007"
What is the least number of miss united continents?
CREATE TABLE table_21792 ( "Rank" real, "Country" text, "Miss United Continent" real, "Virreina" real, "1st RU" real, "2nd RU" real, "3rd RU" real, "4th RU" real, "Semifinalists" real, "Total" real )
SELECT MIN("Miss United Continent") FROM table_21792
What is the lowest maximum of fps with a width of 3072 and a height less than 1620?
CREATE TABLE table_70538 ( "Frame size" text, "Width" real, "Height" real, "Mpix" real, "Aspect Ratio" text, "Maximum fps" real, "Maximum fps HDRx" real, "least compression at 24 fps" text, "least compression at maximum fps" text )
SELECT MIN("Maximum fps") FROM table_70538 WHERE "Width" = '3072' AND "Height" < '1620'
what is the f/laps when the season is 2011 and races is 18?
CREATE TABLE table_44076 ( "Season" text, "Series" text, "Team" text, "Races" text, "Wins" text, "Poles" text, "F/Laps" text, "Podiums" text, "Points" text, "Pos." text )
SELECT "F/Laps" FROM table_44076 WHERE "Season" = '2011' AND "Races" = '18'
Visualize the title and their total smallest ratings of the movie using a bar chart, show bar in desc order.
CREATE TABLE Movie ( mID int, title text, year int, director text ) CREATE TABLE Reviewer ( rID int, name text ) CREATE TABLE Rating ( rID int, mID int, stars int, ratingDate date )
SELECT T2.title, SUM(MIN(T1.stars)) FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID GROUP BY T2.title ORDER BY T2.title DESC
How many starts for an average finish greater than 43?
CREATE TABLE table_name_54 ( starts INTEGER, avg_finish INTEGER )
SELECT SUM(starts) FROM table_name_54 WHERE avg_finish > 43
How big was the crowd when the away team was Richmond?
CREATE TABLE table_name_4 ( crowd VARCHAR, away_team VARCHAR )
SELECT crowd FROM table_name_4 WHERE away_team = "richmond"
subjects must have an admission blood glucose > 140 mg and < 400 mg / dl and no evidence of ketoacidosis ( serum bicarbonate < 18 meq / l
CREATE TABLE table_train_233 ( "id" int, "serum_bicarbonate" int, "language" string, "hemoglobin_a1c_hba1c" float, "creatinine_clearance_cl" float, "admission_blood_glucose" int, "urine_albumin" int, "ketoacidosis" bool, "age" float, "NOUSE" float )
SELECT * FROM table_train_233 WHERE admission_blood_glucose > 140 AND admission_blood_glucose < 400 AND (ketoacidosis = 0 OR serum_bicarbonate > 18)
What is average ratings for Japanese title of , with episodes larger than 9?
CREATE TABLE table_name_38 ( average_ratings VARCHAR, episodes VARCHAR, japanese_title VARCHAR )
SELECT average_ratings FROM table_name_38 WHERE episodes > 9 AND japanese_title = "γƒ›γ‚Ώγƒ«γƒŽγƒ’γ‚«γƒͺ"
what is the nme of the song performed by billy vaughn?
CREATE TABLE table_72488 ( "Position" real, "Artist" text, "Song title" text, "Highest position" real, "Points" real )
SELECT "Song title" FROM table_72488 WHERE "Artist" = 'Billy Vaughn'
what is the position when the pick is higher than 32 and the team is atlanta braves?
CREATE TABLE table_name_8 ( position VARCHAR, pick VARCHAR, team VARCHAR )
SELECT position FROM table_name_8 WHERE pick > 32 AND team = "atlanta braves"
Visualize a bar chart about the distribution of meter_400 and ID .
CREATE TABLE event ( ID int, Name text, Stadium_ID int, Year text ) CREATE TABLE stadium ( ID int, name text, Capacity int, City text, Country text, Opening_year int ) CREATE TABLE swimmer ( ID int, name text, Nationality text, meter_100 real, meter_200 text, meter_300 text, meter_400 text, meter_500 text, meter_600 text, meter_700 text, Time text ) CREATE TABLE record ( ID int, Result text, Swimmer_ID int, Event_ID int )
SELECT meter_400, ID FROM swimmer
How many season premieres had 15.27 million viewers?
CREATE TABLE table_29636 ( "Season" text, "Episodes" real, "Timeslot ( EST )" text, "Season premiere" text, "Season finale" text, "TV season" text, "Rank" text, "Viewers (in millions)" text )
SELECT COUNT("Season premiere") FROM table_29636 WHERE "Viewers (in millions)" = '15.27'
Who is the Colourist that has a Story Title of Broken Glass (part 3) and a Letterer of Albers?
CREATE TABLE table_60959 ( "Cover Date" text, "Story Title" text, "Writer/s" text, "Letterer/s" text, "Colourist/s" text )
SELECT "Colourist/s" FROM table_60959 WHERE "Letterer/s" = 'albers' AND "Story Title" = 'broken glass (part 3)'
What is the College of the WR Player from SWC Conf?
CREATE TABLE table_65742 ( "Original NFL team" text, "Player" text, "Pos." text, "College" text, "Conf." text )
SELECT "College" FROM table_65742 WHERE "Conf." = 'swc' AND "Pos." = 'wr'
On what date was Mike Jackson a handler at the Indianapolis Boat, Sport & Travel Show?
CREATE TABLE table_51074 ( "Date" text, "Distance" text, "Handler" text, "Event" text, "Location" text )
SELECT "Date" FROM table_51074 WHERE "Handler" = 'mike jackson' AND "Event" = 'indianapolis boat, sport & travel show'
What is the Total number of medals for the Nation with 7 or less Bronze medals and 1 Silver medal with a Rank of 9 or larger?
CREATE TABLE table_63918 ( "Rank" real, "Nation" text, "Gold" real, "Silver" real, "Bronze" real, "Total" real )
SELECT MIN("Total") FROM table_63918 WHERE "Bronze" < '7' AND "Silver" = '1' AND "Rank" > '9'
What are the name and id of the team with the most victories in 2008 postseason?
CREATE TABLE postseason ( team_id_winner VARCHAR, year VARCHAR ) CREATE TABLE team ( name VARCHAR, team_id_br VARCHAR )
SELECT T2.name, T1.team_id_winner FROM postseason AS T1 JOIN team AS T2 ON T1.team_id_winner = T2.team_id_br WHERE T1.year = 2008 GROUP BY T1.team_id_winner ORDER BY COUNT(*) DESC LIMIT 1
Lowest pick for mike flater?
CREATE TABLE table_name_21 ( pick INTEGER, name VARCHAR )
SELECT MIN(pick) FROM table_name_21 WHERE name = "mike flater"
What tournament did Nadal win and had a nadal of 16?
CREATE TABLE table_name_75 ( tournament VARCHAR, winner VARCHAR )
SELECT tournament FROM table_name_75 WHERE winner = "nadal" AND "nadal" = 16
What is the lowest position for bruce taylor?
CREATE TABLE table_35572 ( "Position" real, "Pilot" text, "Glider" text, "Speed" text, "Distance" text )
SELECT MIN("Position") FROM table_35572 WHERE "Pilot" = 'bruce taylor'
Which country has an IATA of JFK?
CREATE TABLE table_name_3 ( country VARCHAR, iata VARCHAR )
SELECT country FROM table_name_3 WHERE iata = "jfk"
What is the highest number listed under against when there were 15 losses and more than 1 win?
CREATE TABLE table_75806 ( "Wins" real, "Byes" real, "Losses" real, "Draws" real, "Against" real )
SELECT MAX("Against") FROM table_75806 WHERE "Losses" = '15' AND "Wins" > '1'
Return a bar chart about the distribution of ACC_Road and Team_ID , and group by attribute All_Home.
CREATE TABLE university ( School_ID int, School text, Location text, Founded real, Affiliation text, Enrollment real, Nickname text, Primary_conference text ) CREATE TABLE basketball_match ( Team_ID int, School_ID int, Team_Name text, ACC_Regular_Season text, ACC_Percent text, ACC_Home text, ACC_Road text, All_Games text, All_Games_Percent int, All_Home text, All_Road text, All_Neutral text )
SELECT ACC_Road, Team_ID FROM basketball_match GROUP BY All_Home, ACC_Road
Name the score for december 5
CREATE TABLE table_57402 ( "Date" text, "Visitor" text, "Score" text, "Home" text, "Record" text )
SELECT "Score" FROM table_57402 WHERE "Date" = 'december 5'
How many teams finished in the top team with an average finish of 23.3?
CREATE TABLE table_2190919_1 ( top_10 VARCHAR, avg_finish VARCHAR )
SELECT COUNT(top_10) FROM table_2190919_1 WHERE avg_finish = "23.3"
Who scored the most points in Game 49?
CREATE TABLE table_11960407_5 ( high_points VARCHAR, game VARCHAR )
SELECT high_points FROM table_11960407_5 WHERE game = 49
Which Source has a Remainder of 15%, and a Topinka of 26%?
CREATE TABLE table_75308 ( "Source" text, "Date" text, "Blagojevich (D)" text, "Topinka (R)" text, "Remainder" text )
SELECT "Source" FROM table_75308 WHERE "Remainder" = '15%' AND "Topinka (R)" = '26%'
Which team was the visitor when Milt Palacio (15) was the leading scorer?
CREATE TABLE table_name_82 ( visitor VARCHAR, leading_scorer VARCHAR )
SELECT visitor FROM table_name_82 WHERE leading_scorer = "milt palacio (15)"
Which Drawn has a Points of 6, and a Against larger than 16?
CREATE TABLE table_name_17 ( drawn INTEGER, points VARCHAR, against VARCHAR )
SELECT SUM(drawn) FROM table_name_17 WHERE points = 6 AND against > 16
Name the week for date of bye
CREATE TABLE table_39203 ( "Week" text, "Date" text, "Opponent" text, "Result" text, "Record" text )
SELECT "Week" FROM table_39203 WHERE "Date" = 'bye'
Which College/junior/club team has a Round of 4?
CREATE TABLE table_13766 ( "Round" real, "Pick" real, "Player" text, "Nationality" text, "College/junior/club team" text )
SELECT "College/junior/club team" FROM table_13766 WHERE "Round" = '4'
What was the location of the fight when Sara McMann's record was 1-0?
CREATE TABLE table_name_42 ( location VARCHAR, record VARCHAR )
SELECT location FROM table_name_42 WHERE record = "1-0"
Show different parties of people along with the number of people in each party with a bar chart, and I want to order by the X in ascending please.
CREATE TABLE debate ( Debate_ID int, Date text, Venue text, Num_of_Audience int ) CREATE TABLE debate_people ( Debate_ID int, Affirmative int, Negative int, If_Affirmative_Win bool ) CREATE TABLE people ( People_ID int, District text, Name text, Party text, Age int )
SELECT Party, COUNT(*) FROM people GROUP BY Party ORDER BY Party
What is Owner, when Finished is less than 15, when Trainer is 'Steve Asmussen', and when Horse is 'Z Fortune'?
CREATE TABLE table_46426 ( "Finished" real, "Time/ Behind" text, "Post" real, "Horse" text, "Jockey" text, "Trainer" text, "Owner" text )
SELECT "Owner" FROM table_46426 WHERE "Finished" < '15' AND "Trainer" = 'steve asmussen' AND "Horse" = 'z fortune'
What is the total number of losses for the Team of Montreal with Goals For larger than 29?
CREATE TABLE table_11770 ( "Team" text, "Games Played" real, "Wins" real, "Losses" real, "Ties" real, "Goals For" real, "Goals Against" real )
SELECT COUNT("Losses") FROM table_11770 WHERE "Goals For" > '29' AND "Team" = 'montreal'
What is the pennant for 4 may 1943?
CREATE TABLE table_462 ( "Name" text, "Pennant" text, "Builder" text, "Laid Down" text, "Launched" text, "Commissioned" text, "Fate" text )
SELECT "Pennant" FROM table_462 WHERE "Laid Down" = '4 May 1943'
What is the number of losses for the team with a points difference of -25?
CREATE TABLE table_name_24 ( lost VARCHAR, points_difference VARCHAR )
SELECT lost FROM table_name_24 WHERE points_difference = "-25"
Name the high rebounds for charlotte
CREATE TABLE table_29729 ( "Game" real, "Date" text, "Team" text, "Score" text, "High points" text, "High rebounds" text, "High assists" text, "Location Attendance" text, "Record" text )
SELECT "High rebounds" FROM table_29729 WHERE "Team" = 'Charlotte'
What is the percentage of females where in India and are maharashtra?
CREATE TABLE table_19423 ( "State/UT Code" real, "India/State/UT" text, "Literate Persons (%)" text, "Males (%)" text, "Females (%)" text )
SELECT "Females (%)" FROM table_19423 WHERE "India/State/UT" = 'Maharashtra'
What religion has a para of 56.5%?
CREATE TABLE table_46072 ( "Religion" text, "Suriname" text, "Paramaribo" text, "Wanica" text, "Nickerie" text, "Coronie" text, "Saramacca" text, "Commewijne" text, "Marowijne" text, "Para" text, "Brokopondo" text, "Sipaliwini" text )
SELECT "Religion" FROM table_46072 WHERE "Para" = '56.5%'
What is the I/O bus entry for the processor with a release price of $657?
CREATE TABLE table_66142 ( "Model number" text, "sSpec number" text, "Cores" text, "Frequency" text, "Turbo" text, "L2 cache" text, "L3 cache" text, "GPU model" text, "GPU frequency" text, "Socket" text, "I/O bus" text, "Release date" text, "Part number(s)" text, "Release price ( USD )" text )
SELECT "I/O bus" FROM table_66142 WHERE "Release price ( USD )" = '$657'
Which language do 87.5% of males speak?
CREATE TABLE table_name_44 ( males VARCHAR, percentage___percentage_ VARCHAR )
SELECT males FROM table_name_44 WHERE percentage___percentage_ = "87.5"
What's the tie number of Chelsea when they were home?
CREATE TABLE table_63326 ( "Tie no" text, "Home team" text, "Score" text, "Away team" text, "Date" text )
SELECT "Tie no" FROM table_63326 WHERE "Home team" = 'chelsea'
Who won the mens doubles when wang hao won the mens singles?
CREATE TABLE table_30303 ( "Year Location" text, "Mens Singles" text, "Womens Singles" text, "Mens Doubles" text, "Womens Doubles" text )
SELECT "Mens Doubles" FROM table_30303 WHERE "Mens Singles" = 'Wang Hao'
What is the enrollment for the hawks?
CREATE TABLE table_2562113_1 ( enrollment INTEGER, nickname VARCHAR )
SELECT MAX(enrollment) FROM table_2562113_1 WHERE nickname = "Hawks"
Which October has a Record of 5 1 0, and a Game larger than 6?
CREATE TABLE table_name_2 ( october INTEGER, record VARCHAR, game VARCHAR )
SELECT AVG(october) FROM table_name_2 WHERE record = "5–1–0" AND game > 6
What was the score of the game on October 20 when the home team is the NY Islanders?
CREATE TABLE table_name_57 ( score VARCHAR, home VARCHAR, date VARCHAR )
SELECT score FROM table_name_57 WHERE home = "ny islanders" AND date = "october 20"
When was petter ronnquist picked?
CREATE TABLE table_name_49 ( overall VARCHAR, player VARCHAR )
SELECT overall FROM table_name_49 WHERE player = "petter ronnquist"
What's the mascot in Huntington after the year 2000?
CREATE TABLE table_13771 ( "School" text, "Location" text, "Mascot" text, "County" text, "Year joined" real, "Previous Conference" text, "Year Left" real, "Conference joined" text )
SELECT "Mascot" FROM table_13771 WHERE "Year Left" > '2000' AND "Location" = 'huntington'
Position of defensive tackle, and a Round of 4, and a Pick # smaller than 36 has what overall average?
CREATE TABLE table_name_47 ( overall INTEGER, pick__number VARCHAR, position VARCHAR, round VARCHAR )
SELECT AVG(overall) FROM table_name_47 WHERE position = "defensive tackle" AND round = 4 AND pick__number < 36
When was the team, whose captain is Matt Smith, founded?
CREATE TABLE table_17914 ( "Team" text, "Location" text, "Stadium" text, "Founded" real, "Joined" real, "Head Coach" text, "Captain" text )
SELECT "Founded" FROM table_17914 WHERE "Captain" = 'Matt Smith'
What is Opponent, when Result is Win, and when Date is Aug 7?
CREATE TABLE table_name_67 ( opponent VARCHAR, result VARCHAR, date VARCHAR )
SELECT opponent FROM table_name_67 WHERE result = "win" AND date = "aug 7"
Show the name and number of employees for the departments managed by heads whose temporary acting value is 'Yes' with a bar chart, show from low to high by the X.
CREATE TABLE management ( department_ID int, head_ID int, temporary_acting text ) CREATE TABLE department ( Department_ID int, Name text, Creation text, Ranking int, Budget_in_Billions real, Num_Employees real ) CREATE TABLE head ( head_ID int, name text, born_state text, age real )
SELECT Name, SUM(Num_Employees) FROM department AS T1 JOIN management AS T2 ON T1.department_ID = T2.department_ID WHERE T2.temporary_acting = 'Yes' GROUP BY Name ORDER BY Name
where is hte second place winner from united kingdom?
CREATE TABLE table_819 ( "Year" real, "Winner" text, "Language" text, "Artist" text, "Song" text, "Points" real, "Margin" real, "Second place" text, "Date" text, "Venue" text, "Location" text, "Participants" real )
SELECT "Winner" FROM table_819 WHERE "Second place" = 'United Kingdom'
What is the medal total when there is 2 gold medals, and Brazil (BRA) is the nation?
CREATE TABLE table_name_2 ( total VARCHAR, gold VARCHAR, nation VARCHAR )
SELECT total FROM table_name_2 WHERE gold = 2 AND nation = "brazil (bra)"
What is the platelet count for congenital afibrinogenemia?
CREATE TABLE table_238124_1 ( platelet_count VARCHAR, condition VARCHAR )
SELECT platelet_count FROM table_238124_1 WHERE condition = "Congenital afibrinogenemia"
Name the became consort for christian ix spouse
CREATE TABLE table_68308 ( "Name" text, "Birth" text, "Marriage" text, "Became Consort" text, "Ceased to be Consort" text, "Spouse" text )
SELECT "Became Consort" FROM table_68308 WHERE "Spouse" = 'christian ix'
What Premier League Manager has an Adidas sponsor and a Newcastle United club?
CREATE TABLE table_name_52 ( manager VARCHAR, manufacturer VARCHAR, club VARCHAR )
SELECT manager FROM table_name_52 WHERE manufacturer = "adidas" AND club = "newcastle united"