question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
|
---|---|---|
What position did the player from Rice College play who was picked under 15? | CREATE TABLE table_name_24 (position VARCHAR, pick VARCHAR, college VARCHAR) | SELECT position FROM table_name_24 WHERE pick < 15 AND college = "rice" |
What position did pick 14 play? | CREATE TABLE table_name_72 (position VARCHAR, pick VARCHAR) | SELECT position FROM table_name_72 WHERE pick = 14 |
What pick number did the linebacker from the denver broncos get? | CREATE TABLE table_name_34 (pick VARCHAR, position VARCHAR, team VARCHAR) | SELECT pick FROM table_name_34 WHERE position = "linebacker" AND team = "denver broncos" |
What college was the quarterback from? | CREATE TABLE table_name_3 (college VARCHAR, position VARCHAR) | SELECT college FROM table_name_3 WHERE position = "quarterback" |
What is the lowest number pick from san diego chargers? | CREATE TABLE table_name_3 (pick INTEGER, team VARCHAR) | SELECT MIN(pick) FROM table_name_3 WHERE team = "san diego chargers" |
Which Years has a Type/code of cubic centimetres (cuin) v8 ( m273 )? | CREATE TABLE table_name_72 (years VARCHAR, type_code VARCHAR) | SELECT years FROM table_name_72 WHERE type_code = "cubic centimetres (cuin) v8 ( m273 )" |
What is the total heat number of sun yang, who has a lane less than 2? | CREATE TABLE table_name_37 (heat VARCHAR, name VARCHAR, lane VARCHAR) | SELECT COUNT(heat) FROM table_name_37 WHERE name = "sun yang" AND lane < 2 |
Who has a time of 3:50.90? | CREATE TABLE table_name_35 (name VARCHAR, time VARCHAR) | SELECT name FROM table_name_35 WHERE time = "3:50.90" |
What is the time of lane 3 in heat 5? | CREATE TABLE table_name_47 (time VARCHAR, heat VARCHAR, lane VARCHAR) | SELECT time FROM table_name_47 WHERE heat = 5 AND lane = 3 |
What is the heat with a time of 3:45.57 in lane 3? | CREATE TABLE table_name_77 (heat VARCHAR, lane VARCHAR, time VARCHAR) | SELECT heat FROM table_name_77 WHERE lane = 3 AND time = "3:45.57" |
Who are the Rowers with a Time of 6:39.49? | CREATE TABLE table_name_31 (rowers VARCHAR, time VARCHAR) | SELECT rowers FROM table_name_31 WHERE time = "6:39.49" |
What is the Country of the rowers with a Rank of 4? | CREATE TABLE table_name_11 (country VARCHAR, rank VARCHAR) | SELECT country FROM table_name_11 WHERE rank = 4 |
What counties mascot are the Red Ramblers? | CREATE TABLE table_name_85 (county VARCHAR, mascot VARCHAR) | SELECT county FROM table_name_85 WHERE mascot = "red ramblers" |
What is the IHSAA class when the county was 83 vermillion? | CREATE TABLE table_name_40 (ihsaa_class VARCHAR, county VARCHAR) | SELECT ihsaa_class FROM table_name_40 WHERE county = "83 vermillion" |
What is the enrollment number for Rockville? | CREATE TABLE table_name_27 (enrollment VARCHAR, location VARCHAR) | SELECT COUNT(enrollment) FROM table_name_27 WHERE location = "rockville" |
What is the Attendance of the game against Minnesota Vikings? | CREATE TABLE table_name_87 (attendance VARCHAR, opponent VARCHAR) | SELECT COUNT(attendance) FROM table_name_87 WHERE opponent = "minnesota vikings" |
what is the average score for søren kjeldsen? | CREATE TABLE table_name_71 (score INTEGER, player VARCHAR) | SELECT AVG(score) FROM table_name_71 WHERE player = "søren kjeldsen" |
What's the against of South Warrnambool when the draw is less than 0? | CREATE TABLE table_name_31 (against INTEGER, club VARCHAR, draws VARCHAR) | SELECT SUM(against) FROM table_name_31 WHERE club = "south warrnambool" AND draws < 0 |
What's the smallest draw of Warrnambool when the against was less than 1299, more than 7 wins, and less than 2 losses? | CREATE TABLE table_name_29 (draws INTEGER, losses VARCHAR, club VARCHAR, against VARCHAR, wins VARCHAR) | SELECT MIN(draws) FROM table_name_29 WHERE against < 1299 AND wins > 7 AND club = "warrnambool" AND losses < 2 |
What's the against when the draw was more than 0 and had 13 losses? | CREATE TABLE table_name_47 (against VARCHAR, losses VARCHAR, draws VARCHAR) | SELECT COUNT(against) FROM table_name_47 WHERE losses = 13 AND draws > 0 |
What's the against when there were more than 2 losses, more than 3 wins, and draws more than 0? | CREATE TABLE table_name_86 (against INTEGER, draws VARCHAR, losses VARCHAR, wins VARCHAR) | SELECT AVG(against) FROM table_name_86 WHERE losses > 2 AND wins > 3 AND draws > 0 |
What's the highest amount of losses of Camperdown when the against was less than 945? | CREATE TABLE table_name_81 (losses INTEGER, club VARCHAR, against VARCHAR) | SELECT MAX(losses) FROM table_name_81 WHERE club = "camperdown" AND against < 945 |
what is the sum of league goals when the fa cup goals is more than 0? | CREATE TABLE table_name_51 (league_goals INTEGER, fa_cup_goals INTEGER) | SELECT SUM(league_goals) FROM table_name_51 WHERE fa_cup_goals > 0 |
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? | CREATE TABLE table_name_98 (league_cup_goals INTEGER, total_apps VARCHAR, fa_cup_apps VARCHAR, league_cup_apps VARCHAR, league_goals VARCHAR) | 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" |
what is the average league cup goals when the position is df and total goals is more than 4? | CREATE TABLE table_name_78 (league_cup_goals INTEGER, position VARCHAR, total_goals VARCHAR) | SELECT AVG(league_cup_goals) FROM table_name_78 WHERE position = "df" AND total_goals > 4 |
what is the average fa cup goals when the fa cup apps is 0, total goals is less than 1 and position is df? | CREATE TABLE table_name_80 (fa_cup_goals INTEGER, position VARCHAR, fa_cup_apps VARCHAR, total_goals VARCHAR) | SELECT AVG(fa_cup_goals) FROM table_name_80 WHERE fa_cup_apps = "0" AND total_goals < 1 AND position = "df" |
What year had a score of 0.586? | CREATE TABLE table_name_67 (year VARCHAR, score VARCHAR) | SELECT COUNT(year) FROM table_name_67 WHERE score = "0.586" |
What's the n Africa in 2012 with an N/A as the CPLP? | CREATE TABLE table_name_54 (n_africa_rank VARCHAR, year VARCHAR, cplp_rank VARCHAR) | SELECT n_africa_rank FROM table_name_54 WHERE year = 2012 AND cplp_rank = "n/a" |
What was the final venue for 82 delegates? | CREATE TABLE table_name_23 (finals_venue VARCHAR, number_of_delegates VARCHAR) | SELECT finals_venue FROM table_name_23 WHERE number_of_delegates = "82" |
Which Artist has a Record label of vertigo? | CREATE TABLE table_name_86 (artist VARCHAR, record_label VARCHAR) | SELECT artist FROM table_name_86 WHERE record_label = "vertigo" |
Who is the president when c-span 2009 is 21? | CREATE TABLE table_name_57 (president VARCHAR, c_span_2009 VARCHAR) | SELECT president FROM table_name_57 WHERE c_span_2009 = "21" |
what is c-span 2009 when times 2008** is 08? | CREATE TABLE table_name_80 (c_span_2009 VARCHAR, times_2008 VARCHAR) | SELECT c_span_2009 FROM table_name_80 WHERE times_2008 * * = "08" |
what is siena 2002 when the president is andrew jackson? | CREATE TABLE table_name_96 (siena_2002 VARCHAR, president VARCHAR) | SELECT siena_2002 FROM table_name_96 WHERE president = "andrew jackson" |
Which Location has a Home Ground of Mong kok stadium? | CREATE TABLE table_name_14 (location VARCHAR, home_ground VARCHAR) | SELECT location FROM table_name_14 WHERE home_ground = "mong kok stadium" |
Which club is in the First division? | CREATE TABLE table_name_14 (club VARCHAR, league_division VARCHAR) | SELECT club FROM table_name_14 WHERE league_division = "first division" |
What is the Home Ground with the Location n/a for the Club kcdrsc? | CREATE TABLE table_name_39 (home_ground VARCHAR, location VARCHAR, club VARCHAR) | SELECT home_ground FROM table_name_39 WHERE location = "n/a" AND club = "kcdrsc" |
What League/Division has a Location of n/a? | CREATE TABLE table_name_29 (league_division VARCHAR, location VARCHAR) | SELECT league_division FROM table_name_29 WHERE location = "n/a" |
What Location is in the second division and has 4th, third division (promoted) as its Position in 2012-13? | CREATE TABLE table_name_67 (location VARCHAR, league_division VARCHAR, position_in_2012_13 VARCHAR) | SELECT location FROM table_name_67 WHERE league_division = "second division" AND position_in_2012_13 = "4th, third division (promoted)" |
What was the rank of the team who raced at a time of 7:16.13? | CREATE TABLE table_name_76 (rank VARCHAR, time VARCHAR) | SELECT rank FROM table_name_76 WHERE time = "7:16.13" |
What is the total number of rank for the country of greece? | CREATE TABLE table_name_19 (rank VARCHAR, country VARCHAR) | SELECT COUNT(rank) FROM table_name_19 WHERE country = "greece" |
What country were the athletes where ranked smaller than 5 with notes listed as fb? | CREATE TABLE table_name_67 (country VARCHAR, rank VARCHAR, notes VARCHAR) | SELECT country FROM table_name_67 WHERE rank < 5 AND notes = "fb" |
What is the time for the race with the United States? | CREATE TABLE table_name_63 (time VARCHAR, country VARCHAR) | SELECT time FROM table_name_63 WHERE country = "united states" |
What shirt No has a Birth Date of April 12, 1986 (age27)? | CREATE TABLE table_name_63 (shirt_no INTEGER, birth_date VARCHAR) | SELECT MIN(shirt_no) FROM table_name_63 WHERE birth_date = "april 12, 1986 (age27)" |
What position that has a Height larger than 179, and Player is Ezgi Arslan? | CREATE TABLE table_name_54 (position VARCHAR, height VARCHAR, player VARCHAR) | SELECT position FROM table_name_54 WHERE height > 179 AND player = "ezgi arslan" |
What is the shirt no with a position of setter, a nationality of Italy, and height larger than 172? | CREATE TABLE table_name_11 (shirt_no INTEGER, height VARCHAR, position VARCHAR, nationality VARCHAR) | SELECT SUM(shirt_no) FROM table_name_11 WHERE position = "setter" AND nationality = "italy" AND height > 172 |
What player that has a position of middle blocker, a Nationality of Turkey, and shirt no is 8? | CREATE TABLE table_name_36 (player VARCHAR, shirt_no VARCHAR, position VARCHAR, nationality VARCHAR) | SELECT player FROM table_name_36 WHERE position = "middle blocker" AND nationality = "turkey" AND shirt_no = 8 |
What player that has a Nationality of Turkey, a Height smaller than 183, a shirt no smaller than 19, and a birth date of June 27, 1993 (age20)? | CREATE TABLE table_name_90 (player VARCHAR, birth_date VARCHAR, shirt_no VARCHAR, nationality VARCHAR, height VARCHAR) | SELECT player FROM table_name_90 WHERE nationality = "turkey" AND height < 183 AND shirt_no < 19 AND birth_date = "june 27, 1993 (age20)" |
Which nation won 29 gold medals? | CREATE TABLE table_name_3 (nation VARCHAR, gold VARCHAR) | SELECT nation FROM table_name_3 WHERE gold = 29 |
What is the fewest number of bronze medals won among the nations ranked 12 that won no gold medals and 1 medal overall? | CREATE TABLE table_name_51 (bronze INTEGER, gold VARCHAR, total VARCHAR, rank VARCHAR) | SELECT MIN(bronze) FROM table_name_51 WHERE total = 1 AND rank = "12" AND gold < 1 |
What is the FCC info for the translator with frequency over 89.3MHz and licensd in Portales, New Mexico? | CREATE TABLE table_name_98 (fcc_info VARCHAR, frequency_mhz VARCHAR, city_of_license VARCHAR) | SELECT fcc_info FROM table_name_98 WHERE frequency_mhz > 89.3 AND city_of_license = "portales, new mexico" |
Which ship was launched from Devonport, Devon? | CREATE TABLE table_name_30 (ship VARCHAR, location VARCHAR) | SELECT ship FROM table_name_30 WHERE location = "devonport, devon" |
What country was the Pegasus, build by Royal Dockyard, from? | CREATE TABLE table_name_41 (country VARCHAR, builder VARCHAR, ship VARCHAR) | SELECT country FROM table_name_41 WHERE builder = "royal dockyard" AND ship = "pegasus" |
Who was the builder of Gannet from the United Kingdom? | CREATE TABLE table_name_60 (builder VARCHAR, country VARCHAR, ship VARCHAR) | SELECT builder FROM table_name_60 WHERE country = "united kingdom" AND ship = "gannet" |
Who was the builder of Nor? | CREATE TABLE table_name_12 (builder VARCHAR, ship VARCHAR) | SELECT builder FROM table_name_12 WHERE ship = "nor" |
Who was the builder of Brage from Norway? | CREATE TABLE table_name_37 (builder VARCHAR, country VARCHAR, ship VARCHAR) | SELECT builder FROM table_name_37 WHERE country = "norway" AND ship = "brage" |
What country was Brage, built by karljohansverns verft, from? | CREATE TABLE table_name_23 (country VARCHAR, builder VARCHAR, ship VARCHAR) | SELECT country FROM table_name_23 WHERE builder = "karljohansverns verft" AND ship = "brage" |
Which Silver has a Total of 11, and a Gold smaller than 8? | CREATE TABLE table_name_31 (silver INTEGER, total VARCHAR, gold VARCHAR) | SELECT MIN(silver) FROM table_name_31 WHERE total = 11 AND gold < 8 |
Which Silver has a Total of 1, and a Rank of 12? | CREATE TABLE table_name_37 (silver INTEGER, total VARCHAR, rank VARCHAR) | SELECT MIN(silver) FROM table_name_37 WHERE total = 1 AND rank = "12" |
Which IHSAA Football Class has a School of wood memorial? | CREATE TABLE table_name_71 (ihsaa_football_class VARCHAR, school VARCHAR) | SELECT ihsaa_football_class FROM table_name_71 WHERE school = "wood memorial" |
Which IHSAA Football Class has a County of 77 sullivan, and a School of union dugger? | CREATE TABLE table_name_14 (ihsaa_football_class VARCHAR, county VARCHAR, school VARCHAR) | SELECT ihsaa_football_class FROM table_name_14 WHERE county = "77 sullivan" AND school = "union dugger" |
Which IHSAA Football Class has an Enrollment of 406? | CREATE TABLE table_name_17 (ihsaa_football_class VARCHAR, enrollment VARCHAR) | SELECT ihsaa_football_class FROM table_name_17 WHERE enrollment = 406 |
Which Size has a County of 62 perry? | CREATE TABLE table_name_69 (size INTEGER, county VARCHAR) | SELECT MAX(size) FROM table_name_69 WHERE county = "62 perry" |
Which IHSAA Class has a Size larger than 511? | CREATE TABLE table_name_84 (ihsaa_class VARCHAR, size INTEGER) | SELECT ihsaa_class FROM table_name_84 WHERE size > 511 |
Which IHSAA Class has a School of mitchell? | CREATE TABLE table_name_4 (ihsaa_class VARCHAR, school VARCHAR) | SELECT ihsaa_class FROM table_name_4 WHERE school = "mitchell" |
Which County has a Size larger than 258, and a Mascot of commodores? | CREATE TABLE table_name_95 (county VARCHAR, size VARCHAR, mascot VARCHAR) | SELECT county FROM table_name_95 WHERE size > 258 AND mascot = "commodores" |
What was her place in the lineup on match 2? | CREATE TABLE table_name_33 (lineup VARCHAR, match VARCHAR) | SELECT lineup FROM table_name_33 WHERE match = "2" |
What is the record of the game played on 2/17/1974? | CREATE TABLE table_name_55 (record VARCHAR, date VARCHAR) | SELECT record FROM table_name_55 WHERE date = "2/17/1974" |
Which stadium had the opposition of 79,122? | CREATE TABLE table_name_91 (stadium VARCHAR, opposition VARCHAR) | SELECT stadium FROM table_name_91 WHERE opposition = "79,122" |
What are the notes of the number 1 rank? | CREATE TABLE table_name_52 (notes VARCHAR, rank VARCHAR) | SELECT notes FROM table_name_52 WHERE rank = 1 |
What's the rank if the time was 5:54.57 and FB in notes? | CREATE TABLE table_name_30 (rank VARCHAR, notes VARCHAR, time VARCHAR) | SELECT rank FROM table_name_30 WHERE notes = "fb" AND time = "5:54.57" |
Who are the rowers with the time of 5:54.57? | CREATE TABLE table_name_96 (rowers VARCHAR, time VARCHAR) | SELECT rowers FROM table_name_96 WHERE time = "5:54.57" |
What are the notes of the United States? | CREATE TABLE table_name_31 (notes VARCHAR, country VARCHAR) | SELECT notes FROM table_name_31 WHERE country = "united states" |
What is the gold for a bronze larger than 1, with a total smaller than 10, and a silver of 3? | CREATE TABLE table_name_28 (gold VARCHAR, silver VARCHAR, bronze VARCHAR, total VARCHAR) | SELECT gold FROM table_name_28 WHERE bronze > 1 AND total < 10 AND silver = 3 |
What is the average total when the silver is larger than 2, and a gold larger than 1, and a nation of total? | CREATE TABLE table_name_23 (total INTEGER, nation VARCHAR, silver VARCHAR, gold VARCHAR) | SELECT AVG(total) FROM table_name_23 WHERE silver > 2 AND gold > 1 AND nation = "total" |
When the rank is 11, and bronze a smaller than 1 what is the lowest total? | CREATE TABLE table_name_5 (total INTEGER, rank VARCHAR, bronze VARCHAR) | SELECT MIN(total) FROM table_name_5 WHERE rank = "11" AND bronze < 1 |
What was the A Score when the B Score was 9.05, and position was larger than 6? | CREATE TABLE table_name_50 (a_score INTEGER, b_score VARCHAR, position VARCHAR) | SELECT AVG(a_score) FROM table_name_50 WHERE b_score = 9.05 AND position > 6 |
What is the total when the B Score was 9.15 for Cheng Fei ( chn )? | CREATE TABLE table_name_70 (total INTEGER, b_score VARCHAR, gymnast VARCHAR) | SELECT AVG(total) FROM table_name_70 WHERE b_score = 9.15 AND gymnast = "cheng fei ( chn )" |
What was their position when the score of B was less than 9.05, a total was 15.275, and A Score larger than 6.4? | CREATE TABLE table_name_47 (position INTEGER, a_score VARCHAR, b_score VARCHAR, total VARCHAR) | SELECT AVG(position) FROM table_name_47 WHERE b_score < 9.05 AND total = 15.275 AND a_score > 6.4 |
What is their position when the b score is more than 8.975 for Ekaterina Kramarenko ( rus )? | CREATE TABLE table_name_57 (position VARCHAR, b_score VARCHAR, gymnast VARCHAR) | SELECT position FROM table_name_57 WHERE b_score > 8.975 AND gymnast = "ekaterina kramarenko ( rus )" |
What year had Third-Person Shooter? | CREATE TABLE table_name_16 (year INTEGER, genre VARCHAR) | SELECT AVG(year) FROM table_name_16 WHERE genre = "third-person shooter" |
What year was Portal? | CREATE TABLE table_name_93 (year INTEGER, game VARCHAR) | SELECT MAX(year) FROM table_name_93 WHERE game = "portal" |
Who was the developer(s) of the genre Adventure? | CREATE TABLE table_name_22 (developer_s_ VARCHAR, genre VARCHAR) | SELECT developer_s_ FROM table_name_22 WHERE genre = "adventure" |
What's the platform of the genre RPG? | CREATE TABLE table_name_80 (platform_s_ VARCHAR, genre VARCHAR) | SELECT platform_s_ FROM table_name_80 WHERE genre = "rpg" |
What's the genre of developer(s) Lionhead Studios? | CREATE TABLE table_name_41 (genre VARCHAR, developer_s_ VARCHAR) | SELECT genre FROM table_name_41 WHERE developer_s_ = "lionhead studios" |
What's year was the genre Adventure? | CREATE TABLE table_name_57 (year VARCHAR, genre VARCHAR) | SELECT year FROM table_name_57 WHERE genre = "adventure" |
When was Cardinal-Deacon of S. Giorgio in Velabro elevated? | CREATE TABLE table_name_75 (elevated VARCHAR, cardinalatial_order_and_title VARCHAR) | SELECT elevated FROM table_name_75 WHERE cardinalatial_order_and_title = "cardinal-deacon of s. giorgio in velabro" |
What is the Cardinalatial order and title that Pedro Martínez de Luna y Gotor elevated? | CREATE TABLE table_name_84 (cardinalatial_order_and_title VARCHAR, elector VARCHAR) | SELECT cardinalatial_order_and_title FROM table_name_84 WHERE elector = "pedro martínez de luna y gotor" |
What is the nationality of the elector withe the Cardinalatial order and title of Cardinal-Priest of Ss. XII Apostoli? | CREATE TABLE table_name_49 (nationality VARCHAR, cardinalatial_order_and_title VARCHAR) | SELECT nationality FROM table_name_49 WHERE cardinalatial_order_and_title = "cardinal-priest of ss. xii apostoli" |
What Tournament had Jack Nicklaus as Runner(s)-up? | CREATE TABLE table_name_47 (tournament VARCHAR, runner_s__up VARCHAR) | SELECT tournament FROM table_name_47 WHERE runner_s__up = "jack nicklaus" |
What is the Date of the Tournament with a Winning score of −9 (65-71-68-67=271)? | CREATE TABLE table_name_55 (date VARCHAR, winning_score VARCHAR) | SELECT date FROM table_name_55 WHERE winning_score = −9(65 - 71 - 68 - 67 = 271) |
What is the Winning Score of the Tournament with Jack Nicklaus as Runner(s)-up? | CREATE TABLE table_name_15 (winning_score VARCHAR, runner_s__up VARCHAR) | SELECT winning_score FROM table_name_15 WHERE runner_s__up = "jack nicklaus" |
What is the Runner(s)-up of the Kemper Open Tournament? | CREATE TABLE table_name_70 (runner_s__up VARCHAR, tournament VARCHAR) | SELECT runner_s__up FROM table_name_70 WHERE tournament = "kemper open" |
What week has December 19, 2004 as the date? | CREATE TABLE table_name_33 (week VARCHAR, date VARCHAR) | SELECT week FROM table_name_33 WHERE date = "december 19, 2004" |
What is the highest week that has espn 8:30pm as the TV time? | CREATE TABLE table_name_74 (week INTEGER, tv_time VARCHAR) | SELECT MAX(week) FROM table_name_74 WHERE tv_time = "espn 8:30pm" |
What result has miami dolphins as the opponent? | CREATE TABLE table_name_36 (result VARCHAR, opponent VARCHAR) | SELECT result FROM table_name_36 WHERE opponent = "miami dolphins" |
What is the Time of the swimmer from Chinese Taipei in Heat 3? | CREATE TABLE table_name_88 (time VARCHAR, nationality VARCHAR, heat VARCHAR, lane VARCHAR) | SELECT time FROM table_name_88 WHERE heat = 3 AND lane > 3 AND nationality = "chinese taipei" |
What's the Dolphin Points when the attendance was less than 69,313 and had an opponent of the Buffalo Bills? | CREATE TABLE table_name_88 (dolphins_points INTEGER, opponent VARCHAR, attendance VARCHAR) | SELECT AVG(dolphins_points) FROM table_name_88 WHERE opponent = "buffalo bills" AND attendance < 69 OFFSET 313 |
What's the game with an attendance of 71,962? | CREATE TABLE table_name_53 (game INTEGER, attendance VARCHAR) | SELECT MIN(game) FROM table_name_53 WHERE attendance = 71 OFFSET 962 |
What was the week 12 standing for the housemate that nominated Deepak P Rahul in week 1 and Amit Carol in week 3? | CREATE TABLE table_name_8 (Final VARCHAR, week_1 VARCHAR, week_3 VARCHAR) | SELECT Final AS week_12 FROM table_name_8 WHERE week_1 = "deepak p rahul" AND week_3 = "amit carol" |
Who did the housemate that nominated Kashmera Rakhi in week 3 and Amit Bobby in week 1 nominate in week 6? | CREATE TABLE table_name_60 (week_6 VARCHAR, week_3 VARCHAR, week_1 VARCHAR) | SELECT week_6 FROM table_name_60 WHERE week_3 = "kashmera rakhi" AND week_1 = "amit bobby" |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.