context
stringlengths 0
489
| instruction
stringlengths 16
244
| response
stringlengths 38
557
|
---|---|---|
CREATE TABLE table_27455867_1 (callback_audition_date VARCHAR, episode_air_date VARCHAR) | When was the callback audition date for the audition city from the episode aired on February 2, 2011? | SELECT callback_audition_date FROM table_27455867_1 WHERE episode_air_date = "February 2, 2011" |
CREATE TABLE table_2071644_2 (flange_thickness__mm_ VARCHAR, weight__kg_m_ VARCHAR) | What is the flange thickness when the weight is 19.9? | SELECT flange_thickness__mm_ FROM table_2071644_2 WHERE weight__kg_m_ = "19.9" |
CREATE TABLE table_name_80 (guernsey_record VARCHAR, location VARCHAR) | What was the guernsey record set with a fish caught at Bordeaux Harbour? | SELECT guernsey_record FROM table_name_80 WHERE location = "bordeaux harbour" |
CREATE TABLE table_name_21 (release_date VARCHAR, production_num VARCHAR, characters VARCHAR) | When was the film released that a less than 5038 production number and was of the character Bosko? | SELECT release_date FROM table_name_21 WHERE production_num < 5038 AND characters = "bosko" |
CREATE TABLE table_20726262_6 (no_in_season INTEGER, directedby VARCHAR) | What episode was directed by Karen Gaviola? | SELECT MIN(no_in_season) FROM table_20726262_6 WHERE directedby = "Karen Gaviola" |
CREATE TABLE table_name_56 (production_num INTEGER, title VARCHAR) | The film titled Bosko's fox hunt had what as the smallest production number? | SELECT MIN(production_num) FROM table_name_56 WHERE title = "bosko's fox hunt" |
CREATE TABLE table_27484208_1 (world_rank_by_qs_ VARCHAR, _2013 VARCHAR, members VARCHAR) | What was the world rank by QS in 2013 for the University of Otago? | SELECT world_rank_by_qs_, _2013 FROM table_27484208_1 WHERE members = "University of Otago" |
CREATE TABLE table_name_50 (year INTEGER, genre VARCHAR) | What is total number of years that has genre of first-person shooter? | SELECT SUM(year) FROM table_name_50 WHERE genre = "first-person shooter" |
CREATE TABLE table_27487712_1 (result VARCHAR, incumbent VARCHAR) | What was the result of the election with incumbent john lewis? | SELECT result FROM table_27487712_1 WHERE incumbent = "John Lewis" |
CREATE TABLE table_name_9 (roman_equivalent VARCHAR) | what is the "normalized" transliteration for Roman i | SELECT "normalised" AS _transliteration FROM table_name_9 WHERE roman_equivalent = "i" |
CREATE TABLE table_27487310_5 (judges VARCHAR, country VARCHAR, air_dates VARCHAR) | Who are the judges in the Netherlands for the season airing 28 November 2011 – 24 December 2011? | SELECT judges FROM table_27487310_5 WHERE country = "Netherlands" AND air_dates = "28 November 2011 – 24 December 2011" |
CREATE TABLE table_name_86 (normal_environment_of_occurrence__in_native_words_ VARCHAR, proto_germanic_origin VARCHAR) | what is the normal environment of occurrence that has a Proto-Germanic origin /ai/ | SELECT normal_environment_of_occurrence__in_native_words_ FROM table_name_86 WHERE proto_germanic_origin = "/ai/" |
CREATE TABLE table_27487336_1 (season VARCHAR, sacks VARCHAR) | How many seasons have a sacks of 39? | SELECT COUNT(season) FROM table_27487336_1 WHERE sacks = "39" |
CREATE TABLE table_name_45 (latitude VARCHAR, ansi_code VARCHAR, township VARCHAR, land___sqmi__ VARCHAR, geo_id VARCHAR) | What is the total latitude of the greenland township with more than 34.846 sqmi of land, a geo id less than 3805529660, and an ANSI code greater than 1036405? | SELECT COUNT(latitude) FROM table_name_45 WHERE land___sqmi__ > 34.846 AND geo_id < 3805529660 AND township = "greenland" AND ansi_code > 1036405 |
CREATE TABLE table_27501030_7 (decision VARCHAR, opponent VARCHAR) | What is the decision when the opponents are atlanta thrashers? | SELECT decision FROM table_27501030_7 WHERE opponent = "Atlanta Thrashers" |
CREATE TABLE table_name_29 (experience VARCHAR, year_at_cu VARCHAR, position VARCHAR) | The graduate assistant who was in the 1st year at CU has what experience? | SELECT experience FROM table_name_29 WHERE year_at_cu = "1st" AND position = "graduate assistant" |
CREATE TABLE table_name_86 (name VARCHAR, experience VARCHAR, alma_mater VARCHAR) | What person has the alma mater of Eastern Nazarene ('74), and greater than 19 experience? | SELECT name FROM table_name_86 WHERE experience > 19 AND alma_mater = "eastern nazarene ('74)" |
CREATE TABLE table_name_50 (engine_capacity VARCHAR, model VARCHAR, mpg_us_extra_urban VARCHAR, transmission VARCHAR, mpg_us_urban VARCHAR) | What is the total engine capacity of the a4 transmission, which has an urban mpg-US greater than 19, an mpg-us extra-urban greater than 38.6, and an aveo model? | SELECT COUNT(engine_capacity) FROM table_name_50 WHERE transmission = "a4" AND mpg_us_urban > 19 AND mpg_us_extra_urban > 38.6 AND model = "aveo" |
CREATE TABLE table_2076490_1 (enrollment__2005_ VARCHAR, type VARCHAR, school VARCHAR) | What was the enrollment (2005) for baccalaureate colleges , for Granite State College? | SELECT enrollment__2005_ FROM table_2076490_1 WHERE type = "Baccalaureate college" AND school = "Granite State College" |
CREATE TABLE table_name_89 (mpg_uk_combined VARCHAR, engine_capacity VARCHAR, fuel_type VARCHAR, mpg_uk_urban__cold_ VARCHAR, transmission VARCHAR) | What is the mpg-uk combined with an mpg-uk urban (cold) greater than 26.6, a m5 transmission, a diesel fuel type, and an engine capacity less than 1560? | SELECT mpg_uk_combined FROM table_name_89 WHERE mpg_uk_urban__cold_ > 26.6 AND transmission = "m5" AND fuel_type = "diesel" AND engine_capacity < 1560 |
CREATE TABLE table_name_24 (l_100km_urban__cold_ VARCHAR, engine_capacity VARCHAR, mpg_uk_extra_urban VARCHAR, co_2_g_km VARCHAR, mpg_us_urban VARCHAR) | What is the l/100km urban (cold) with a CO 2 g/km less than 222, an mpg-us urban greater than 17.8, an mpg-uk extra-urban of 55.4, and an engine capacity greater than 1560? | SELECT l_100km_urban__cold_ FROM table_name_24 WHERE co_2_g_km < 222 AND mpg_us_urban > 17.8 AND mpg_uk_extra_urban = 55.4 AND engine_capacity > 1560 |
CREATE TABLE table_27529608_21 (qtr_final__week_ INTEGER, name_name_of_act VARCHAR) | What is the quarterfinal week for Austin Anderson? | SELECT MIN(qtr_final__week_) FROM table_27529608_21 WHERE name_name_of_act = "Austin Anderson" |
CREATE TABLE table_name_6 (model VARCHAR, mpg_uk_combined VARCHAR, l_100km_urban__cold_ VARCHAR, green_rating VARCHAR, manufacturer VARCHAR) | What model has a g green rating, has chrysler jeep as a manufacturer, has an l/100km urban (cold) less than 18, and has an mpg-uk combined of 27.7? | SELECT model FROM table_name_6 WHERE green_rating = "g" AND manufacturer = "chrysler jeep" AND l_100km_urban__cold_ < 18 AND mpg_uk_combined = 27.7 |
CREATE TABLE table_27529608_21 (semi_final__week_ VARCHAR, hometown VARCHAR) | How many semi-final weeks are there for acts from Pittsburgh, Pennsylvania? | SELECT COUNT(semi_final__week_) FROM table_27529608_21 WHERE hometown = "Pittsburgh, Pennsylvania" |
CREATE TABLE table_name_80 (total_apps VARCHAR, league_apps VARCHAR) | what is the total apps when the league apps is 4 (2)? | SELECT total_apps FROM table_name_80 WHERE league_apps = "4 (2)" |
CREATE TABLE table_207795_1 (type_of_work VARCHAR, russian_title VARCHAR) | How many types of work is хромая судьба? | SELECT COUNT(type_of_work) FROM table_207795_1 WHERE russian_title = "Хромая судьба" |
CREATE TABLE table_name_80 (rank INTEGER, time VARCHAR) | What is the least rank for athletes with a time of 6:36.65? | SELECT MIN(rank) FROM table_name_80 WHERE time = "6:36.65" |
CREATE TABLE table_27533947_1 (players VARCHAR, grand_average VARCHAR) | If the grand average is 12.76-202, who is the player? | SELECT players FROM table_27533947_1 WHERE grand_average = "12.76-202" |
CREATE TABLE table_20855452_4 (points VARCHAR, player VARCHAR) | How many points did agnieszka radwańska score? | SELECT points FROM table_20855452_4 WHERE player = "Agnieszka Radwańska" |
CREATE TABLE table_27537518_4 (attendance INTEGER, score VARCHAR) | What was the 6-4 score's maximum attendance? | SELECT MAX(attendance) FROM table_27537518_4 WHERE score = "6-4" |
CREATE TABLE table_name_3 (points INTEGER, name VARCHAR, tries VARCHAR) | How many Points have a Name of stephen myler, and Tries smaller than 0? | SELECT SUM(points) FROM table_name_3 WHERE name = "stephen myler" AND tries < 0 |
CREATE TABLE table_name_85 (number_of_electorates__2003_ INTEGER, constituency_number VARCHAR, district VARCHAR, reserved_for___sc___st__none_ VARCHAR) | What is the lowest number of Electorates (2003) in District bhind, Reserved for none, and Constituency Number 11? | SELECT MIN(number_of_electorates__2003_) FROM table_name_85 WHERE district = "bhind" AND reserved_for___sc___st__none_ = "none" AND constituency_number = "11" |
CREATE TABLE table_27539272_4 (record VARCHAR, location_attendance VARCHAR) | Name the record for prudential center - 12,880 | SELECT record FROM table_27539272_4 WHERE location_attendance = "Prudential Center - 12,880" |
CREATE TABLE table_20903658_1 (title_subject VARCHAR, medium VARCHAR, public_office VARCHAR) | Who was the subject of the bronze sculpture who was a colonist and soldier in Ville Marie, New France? | SELECT title_subject FROM table_20903658_1 WHERE medium = "Bronze" AND public_office = "colonist and soldier in Ville Marie, New France" |
CREATE TABLE table_20963074_1 (original_title VARCHAR, result VARCHAR, film_title_used_in_nomination VARCHAR) | Name the original title for not nominated result with report on death | SELECT original_title FROM table_20963074_1 WHERE result = "Not Nominated" AND film_title_used_in_nomination = "Report on Death" |
CREATE TABLE table_20963074_1 (result VARCHAR, original_title VARCHAR) | Name the total number of results for octubre | SELECT COUNT(result) FROM table_20963074_1 WHERE original_title = "Octubre" |
CREATE TABLE table_20963074_1 (year__ceremony_ VARCHAR, original_title VARCHAR) | Name the year for reportaje a la muerte | SELECT year__ceremony_ FROM table_20963074_1 WHERE original_title = "Reportaje a la muerte" |
CREATE TABLE table_name_49 (type VARCHAR, unit VARCHAR) | What is the type for a vessel with a listed unit of naval base swinoujscie (auxiliary squadron)? | SELECT type FROM table_name_49 WHERE unit = "naval base swinoujscie (auxiliary squadron)" |
CREATE TABLE table_20971444_3 (first_air_date VARCHAR, episode VARCHAR) | Name the first air date for 9 episode | SELECT first_air_date FROM table_20971444_3 WHERE episode = 9 |
CREATE TABLE table_27547668_3 (directed_by VARCHAR, viewers VARCHAR) | Who directed the episode with 899000 viewers? | SELECT directed_by FROM table_27547668_3 WHERE viewers = 899000 |
CREATE TABLE table_name_71 (countries_sampled INTEGER, ranking_in_latin_america__2_ VARCHAR, year_of_publication VARCHAR, world_ranking__1_ VARCHAR) | How many countries sampled has a world ranking of 33 in 2010 and less than 3 ranking in Latin America? | SELECT SUM(countries_sampled) FROM table_name_71 WHERE year_of_publication = "2010" AND world_ranking__1_ = "33" AND ranking_in_latin_america__2_ < 3 |
CREATE TABLE table_27547668_2 (original_airdate VARCHAR, _number VARCHAR) | What is the original air date of # 6? | SELECT original_airdate FROM table_27547668_2 WHERE _number = 6 |
CREATE TABLE table_name_43 (score VARCHAR, tie_no VARCHAR, away_team VARCHAR) | What is the score when the Tie no is replay, and the away team is York City? | SELECT score FROM table_name_43 WHERE tie_no = "replay" AND away_team = "york city" |
CREATE TABLE table_name_79 (episode_number VARCHAR, broadcast_date VARCHAR) | What is the episode number of the episode broadcast on 21 September 2001? | SELECT episode_number FROM table_name_79 WHERE broadcast_date = "21 september 2001" |
CREATE TABLE table_27592654_2 (province VARCHAR, election_date VARCHAR) | What was the province with an election date of 5 cannot handle non-empty timestamp argument! 1861? | SELECT province FROM table_27592654_2 WHERE election_date = "5 Cannot handle non-empty timestamp argument! 1861" |
CREATE TABLE table_name_91 (most_spoken_language VARCHAR, population VARCHAR, code VARCHAR, area__km_2__ VARCHAR) | What is the Most Spoken language in the Place with Code 70403 with an Area (km 2) larger than 3.79 and a Population larger than 73,283? | SELECT most_spoken_language FROM table_name_91 WHERE code > 70403 AND area__km_2__ > 3.79 AND population > 73 OFFSET 283 |
CREATE TABLE table_21076286_2 (broadcast_day_and_timings__in_jst__ VARCHAR, broadcast_network VARCHAR) | Name the broadcast day and timings for tv saitama | SELECT broadcast_day_and_timings__in_jst__ FROM table_21076286_2 WHERE broadcast_network = "TV Saitama" |
CREATE TABLE table_27614571_1 (song_choice VARCHAR, original_artist VARCHAR) | What was Barreto's song choice where the original artist was Patricia Marx? | SELECT song_choice FROM table_27614571_1 WHERE original_artist = "Patricia Marx" |
CREATE TABLE table_name_85 (lane INTEGER, react VARCHAR, time VARCHAR) | What's the lane number when time was 20.45 and the react was less than 0.164? | SELECT MAX(lane) FROM table_name_85 WHERE react < 0.164 AND time = "20.45" |
CREATE TABLE table_name_66 (population INTEGER, place VARCHAR, code VARCHAR, area__km_2__ VARCHAR) | What is the Population of Tshepiso with a Code of 70409 or smaller and an Area (km 2) smaller than 5.97? | SELECT MIN(population) FROM table_name_66 WHERE code < 70409 AND area__km_2__ < 5.97 AND place = "tshepiso" |
CREATE TABLE table_name_76 (time VARCHAR, react VARCHAR, athlete VARCHAR) | What the time of Paul Hession with more than an 0.187 react? | SELECT time FROM table_name_76 WHERE react > 0.187 AND athlete = "paul hession" |
CREATE TABLE table_27611593_5 (opponents VARCHAR, partner VARCHAR) | Who were Petrova's opponents with Vania King? | SELECT opponents FROM table_27611593_5 WHERE partner = "Vania King" |
CREATE TABLE table_27615445_1 (episode_air_date VARCHAR, guest_fourth_judge VARCHAR) | List all episode air dates where Luiza Possi was the guest fourth judge? | SELECT episode_air_date FROM table_27615445_1 WHERE guest_fourth_judge = "Luiza Possi" |
CREATE TABLE table_27615445_1 (episode_air_date VARCHAR, audition_city VARCHAR) | How many episode air dates are there for auditioning city Rio De Janeiro? | SELECT COUNT(episode_air_date) FROM table_27615445_1 WHERE audition_city = "Rio de Janeiro" |
CREATE TABLE table_2119448_3 (won_promotion VARCHAR, lost_promotion_playoffs VARCHAR) | Name the won promotion for kalmar ff | SELECT won_promotion FROM table_2119448_3 WHERE lost_promotion_playoffs = "Kalmar FF" |
CREATE TABLE table_name_35 (nation VARCHAR, world_rank VARCHAR, birth_date VARCHAR) | what is the nation when the world rank is 2 and the birth date is 1976-12-20? | SELECT nation FROM table_name_35 WHERE world_rank = "2" AND birth_date = "1976-12-20" |
CREATE TABLE table_27614707_1 (song_choice VARCHAR, week__number VARCHAR, original_artist VARCHAR) | What Marisa Monte song choice was song during top 5? | SELECT song_choice FROM table_27614707_1 WHERE week__number = "Top 5" AND original_artist = "Marisa Monte" |
CREATE TABLE table_21269441_4 (tournament_venue__city_ VARCHAR, regular_season_winner VARCHAR) | Where was the tourney when Louisville won the regular season? | SELECT tournament_venue__city_ FROM table_21269441_4 WHERE regular_season_winner = "Louisville" |
CREATE TABLE table_name_22 (date VARCHAR, format VARCHAR, label VARCHAR) | When did Avex Entertainment release a CD? | SELECT date FROM table_name_22 WHERE format = "cd" AND label = "avex entertainment" |
CREATE TABLE table_27671835_3 (members_lost INTEGER, net_change VARCHAR) | What is the lowest number of members lost when the net change is −1? | SELECT MIN(members_lost) FROM table_27671835_3 WHERE net_change = "−1" |
CREATE TABLE table_27671835_3 (new_membership_total VARCHAR, conference VARCHAR) | What was the new membership total at the nchc (men only) conference? | SELECT new_membership_total FROM table_27671835_3 WHERE conference = "NCHC (men only)" |
CREATE TABLE table_27683516_3 (team VARCHAR, date_of_vacancy VARCHAR) | How many dates of vacancy were on 30 october 2010? | SELECT COUNT(team) FROM table_27683516_3 WHERE date_of_vacancy = "30 October 2010" |
CREATE TABLE table_21636599_1 (insurgents INTEGER, total_per_period VARCHAR) | How many insurgents have 602 as the total per period? | SELECT MAX(insurgents) FROM table_21636599_1 WHERE total_per_period = 602 |
CREATE TABLE table_21692771_1 (isin VARCHAR, amount_issued_ VARCHAR, € VARCHAR) | What is the ISIN that has an amount issued of 223,000,000? | SELECT isin FROM table_21692771_1 WHERE amount_issued_[€] = "223,000,000" |
CREATE TABLE table_27700375_11 (date VARCHAR, location_attendance VARCHAR) | Name the date for the palace of auburn hills 14,554 | SELECT date FROM table_27700375_11 WHERE location_attendance = "The Palace of Auburn Hills 14,554" |
CREATE TABLE table_27700375_11 (game INTEGER, score VARCHAR) | Name the least game for l 109–116 (ot) | SELECT MIN(game) FROM table_27700375_11 WHERE score = "L 109–116 (OT)" |
CREATE TABLE table_21795650_1 (points VARCHAR, series VARCHAR) | What is the point total for the Formula Renault 2.0 Italy series? | SELECT COUNT(points) FROM table_21795650_1 WHERE series = "Formula Renault 2.0 Italy" |
CREATE TABLE table_name_3 (result VARCHAR, opponent VARCHAR) | Which Result has an Opponent of washington redskins? | SELECT result FROM table_name_3 WHERE opponent = "washington redskins" |
CREATE TABLE table_21790203_1 (year__ceremony_ VARCHAR, film_title_used_in_nomination VARCHAR) | Name the year for is my magic | SELECT year__ceremony_ FROM table_21790203_1 WHERE film_title_used_in_nomination = "My Magic" |
CREATE TABLE table_name_61 (fencing_victories__pts_ VARCHAR, shooting_score__pts_ VARCHAR, total VARCHAR) | Which Fencing Victories (pts) has a Shooting Score (pts) of 187 (1180) and a Total smaller than 5640? Question 1 | SELECT fencing_victories__pts_ FROM table_name_61 WHERE shooting_score__pts_ = "187 (1180)" AND total < 5640 |
CREATE TABLE table_21790203_1 (result VARCHAR, film_title_used_in_nomination VARCHAR) | Name the result for already famous | SELECT result FROM table_21790203_1 WHERE film_title_used_in_nomination = "Already Famous" |
CREATE TABLE table_name_72 (years VARCHAR, type_code VARCHAR) | Which Years has a Type/code of cubic centimetres (cuin) v8 ( m273 )? | SELECT years FROM table_name_72 WHERE type_code = "cubic centimetres (cuin) v8 ( m273 )" |
CREATE TABLE table_2192067_4 (reason_for_change VARCHAR, date_successor_seated VARCHAR) | what is the reason for change where the date the successor was seated was july 28, 1876? | SELECT reason_for_change FROM table_2192067_4 WHERE date_successor_seated = "July 28, 1876" |
CREATE TABLE table_2192067_4 (district VARCHAR, vacator VARCHAR) | what is the district where the vacator is vacant? | SELECT district FROM table_2192067_4 WHERE vacator = "Vacant" |
CREATE TABLE table_21995420_6 (total VARCHAR, school VARCHAR) | What is every total for the University of the Cordilleras UC Dance Squad? | SELECT total FROM table_21995420_6 WHERE school = "University of the Cordilleras UC Dance Squad" |
CREATE TABLE table_name_29 (draws INTEGER, losses VARCHAR, club VARCHAR, against VARCHAR, wins VARCHAR) | What's the smallest draw of Warrnambool when the against was less than 1299, more than 7 wins, and less than 2 losses? | SELECT MIN(draws) FROM table_name_29 WHERE against < 1299 AND wins > 7 AND club = "warrnambool" AND losses < 2 |
CREATE TABLE table_2199290_2 (outcome VARCHAR, score_in_the_final VARCHAR) | What was the outcome when the final score was 7–6(9), 7–6(1)? | SELECT outcome FROM table_2199290_2 WHERE score_in_the_final = "7–6(9), 7–6(1)" |
CREATE TABLE table_name_98 (league_cup_goals INTEGER, total_apps VARCHAR, fa_cup_apps VARCHAR, league_cup_apps VARCHAR, league_goals VARCHAR) | what is the average league cup goals when the league cup apps is 4, league goals is less than 4, fa cup apps is 1 and total apps is 35? | SELECT AVG(league_cup_goals) FROM table_name_98 WHERE league_cup_apps = 4 AND league_goals < 4 AND fa_cup_apps = "1" AND total_apps = "35" |
CREATE TABLE table_22050544_1 (winner VARCHAR, event__number VARCHAR) | What is the winner in event number 15h? | SELECT winner FROM table_22050544_1 WHERE event__number = "15H" |
CREATE TABLE table_27713030_3 (location_attendance VARCHAR, date VARCHAR) | What is the location and attendance on October 18? | SELECT location_attendance FROM table_27713030_3 WHERE date = "October 18" |
CREATE TABLE table_name_67 (location VARCHAR, league_division VARCHAR, position_in_2012_13 VARCHAR) | What Location is in the second division and has 4th, third division (promoted) as its Position in 2012-13? | SELECT location FROM table_name_67 WHERE league_division = "second division" AND position_in_2012_13 = "4th, third division (promoted)" |
CREATE TABLE table_name_11 (shirt_no INTEGER, height VARCHAR, position VARCHAR, nationality VARCHAR) | What is the shirt no with a position of setter, a nationality of Italy, and height larger than 172? | SELECT SUM(shirt_no) FROM table_name_11 WHERE position = "setter" AND nationality = "italy" AND height > 172 |
CREATE TABLE table_name_98 (fcc_info VARCHAR, frequency_mhz VARCHAR, city_of_license VARCHAR) | What is the FCC info for the translator with frequency over 89.3MHz and licensd in Portales, New Mexico? | SELECT fcc_info FROM table_name_98 WHERE frequency_mhz > 89.3 AND city_of_license = "portales, new mexico" |
CREATE TABLE table_27715173_6 (record VARCHAR, date VARCHAR) | How many records are there for the game on november 24? | SELECT COUNT(record) FROM table_27715173_6 WHERE date = "November 24" |
CREATE TABLE table_name_69 (size INTEGER, county VARCHAR) | Which Size has a County of 62 perry? | SELECT MAX(size) FROM table_name_69 WHERE county = "62 perry" |
CREATE TABLE table_222448_1 (sigma__with_15σ_shift_ VARCHAR, percent_defective VARCHAR) | What is the sigma (with 1.5σ shift) when there are 69% defective? | SELECT sigma__with_15σ_shift_ FROM table_222448_1 WHERE percent_defective = "69%" |
CREATE TABLE table_27721131_2 (high_assists VARCHAR, score VARCHAR) | Who's in the high assists with a w 97–94 (ot) score? | SELECT high_assists FROM table_27721131_2 WHERE score = "W 97–94 (OT)" |
CREATE TABLE table_22265225_1 (original_air_date VARCHAR, production_code VARCHAR) | What day did the episode with a production code of 218 originally air? | SELECT original_air_date FROM table_22265225_1 WHERE production_code = "218" |
CREATE TABLE table_27721131_2 (team VARCHAR, high_assists VARCHAR, score VARCHAR) | What's the team number with John Wall (9) in high assists and a w 97–83 (ot) score? | SELECT COUNT(team) FROM table_27721131_2 WHERE high_assists = "John Wall (9)" AND score = "W 97–83 (OT)" |
CREATE TABLE table_22265261_1 (age VARCHAR, sp VARCHAR) | How old was the horse when the SP was 200/1? | SELECT COUNT(age) FROM table_22265261_1 WHERE sp = "200/1" |
CREATE TABLE table_22265261_1 (distance VARCHAR, position VARCHAR) | What was the distance for the 11th position? | SELECT distance FROM table_22265261_1 WHERE position = "11th" |
CREATE TABLE table_name_70 (total INTEGER, b_score VARCHAR, gymnast VARCHAR) | What is the total when the B Score was 9.15 for Cheng Fei ( chn )? | SELECT AVG(total) FROM table_name_70 WHERE b_score = 9.15 AND gymnast = "cheng fei ( chn )" |
CREATE TABLE table_22298383_1 (report VARCHAR, day VARCHAR, average_speed__mph_ VARCHAR) | What was the report for the Sunday race where the winner had an average speed of 128.27 mph? | SELECT report FROM table_22298383_1 WHERE day = "Sunday" AND average_speed__mph_ = "128.27" |
CREATE TABLE table_22329326_1 (market_rank_ VARCHAR, _city_of_license__market VARCHAR, station VARCHAR) | What market rank and city had the station KABC-TV? | SELECT market_rank_ & _city_of_license__market FROM table_22329326_1 WHERE station = "KABC-TV" |
CREATE TABLE table_name_84 (cardinalatial_order_and_title VARCHAR, elector VARCHAR) | What is the Cardinalatial order and title that Pedro Martínez de Luna y Gotor elevated? | SELECT cardinalatial_order_and_title FROM table_name_84 WHERE elector = "pedro martínez de luna y gotor" |
CREATE TABLE table_name_49 (nationality VARCHAR, cardinalatial_order_and_title VARCHAR) | What is the nationality of the elector withe the Cardinalatial order and title of Cardinal-Priest of Ss. XII Apostoli? | SELECT nationality FROM table_name_49 WHERE cardinalatial_order_and_title = "cardinal-priest of ss. xii apostoli" |
CREATE TABLE table_27723228_8 (record VARCHAR, score VARCHAR) | What is the record when the score was l 84–96 (ot)? | SELECT record FROM table_27723228_8 WHERE score = "L 84–96 (OT)" |
CREATE TABLE table_22464308_2 (malaysian_team_classification VARCHAR, points_classification VARCHAR) | Which malaysian team classification had mohd nur rizuan zainal as points classification? | SELECT malaysian_team_classification FROM table_22464308_2 WHERE points_classification = "Mohd Nur Rizuan Zainal" |
CREATE TABLE table_27723526_9 (high_assists VARCHAR, date VARCHAR) | Who had highest assists at game on December 21? | SELECT COUNT(high_assists) FROM table_27723526_9 WHERE date = "December 21" |
CREATE TABLE table_name_99 (location VARCHAR, ihsaa_football_class VARCHAR, school VARCHAR) | Winchester Community school, which plays IHSAA class AA football, is located where? | SELECT location FROM table_name_99 WHERE ihsaa_football_class = "aa" AND school = "winchester community" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.