question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
What is the name of the country when the television service is italia 1?
CREATE TABLE table_name_95 (country VARCHAR, television_service VARCHAR)
SELECT country FROM table_name_95 WHERE television_service = "italia 1"
What is the HDTV when the content is general television?
CREATE TABLE table_name_50 (hdtv VARCHAR, content VARCHAR)
SELECT hdtv FROM table_name_50 WHERE content = "general television"
What is the Country when the Content was general television, and a Television service of rai 1?
CREATE TABLE table_name_87 (country VARCHAR, content VARCHAR, television_service VARCHAR)
SELECT country FROM table_name_87 WHERE content = "general television" AND television_service = "rai 1"
What is the Language that has sky tg 24 active as the Television service?
CREATE TABLE table_name_83 (language VARCHAR, television_service VARCHAR)
SELECT language FROM table_name_83 WHERE television_service = "sky tg 24 active"
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"
What was the record when there was a fight that lasted 5:00?
CREATE TABLE table_name_96 (record VARCHAR, time VARCHAR)
SELECT record FROM table_name_96 WHERE time = "5:00"
What is the method of resolution for the fight that had a time of 5:00 and a record of 5-0?
CREATE TABLE table_name_57 (method VARCHAR, time VARCHAR, record VARCHAR)
SELECT method FROM table_name_57 WHERE time = "5:00" AND record = "5-0"
What's the average Week with the Result l 23–3?
CREATE TABLE table_name_49 (week INTEGER, result VARCHAR)
SELECT AVG(week) FROM table_name_49 WHERE result = "l 23–3"
With the date of October 28, 1962, and the week greater than 4, what was the lowest attendance?
CREATE TABLE table_name_12 (attendance INTEGER, week VARCHAR, date VARCHAR)
SELECT MIN(attendance) FROM table_name_12 WHERE week > 4 AND date = "october 28, 1962"
What Belarusian has a status of Raion a foundation of 1514 and a 2010 population of 8100?
CREATE TABLE table_name_73 (belarusian__bgn_pcgn_ VARCHAR, population__2010_ VARCHAR, status VARCHAR, foundation VARCHAR)
SELECT belarusian__bgn_pcgn_ FROM table_name_73 WHERE status = "raion" AND foundation = "1514" AND population__2010_ = "8100"
Which model number has an order part number of TMSMT37BQX5LD?
CREATE TABLE table_name_57 (model_number VARCHAR, order_part_number VARCHAR)
SELECT model_number FROM table_name_57 WHERE order_part_number = "tmsmt37bqx5ld"
Which model number has an order part number of TMDML44BKX5LD?
CREATE TABLE table_name_32 (model_number VARCHAR, order_part_number VARCHAR)
SELECT model_number FROM table_name_32 WHERE order_part_number = "tmdml44bkx5ld"
What is the socket related to the processor released on June 22, 2005, having a frequency of 1600MHz and voltage under 1.35V?
CREATE TABLE table_name_7 (socket VARCHAR, voltage VARCHAR, frequency VARCHAR, release_date VARCHAR)
SELECT socket FROM table_name_7 WHERE frequency = "1600mhz" AND release_date = "june 22, 2005" AND voltage < 1.35
What is the highest rank for PSV - FC Barcelona?
CREATE TABLE table_name_64 (rank INTEGER, team VARCHAR)
SELECT MAX(rank) FROM table_name_64 WHERE team = "psv - fc barcelona"
What rank was Peter Schmeichel?
CREATE TABLE table_name_89 (rank INTEGER, name VARCHAR)
SELECT SUM(rank) FROM table_name_89 WHERE name = "peter schmeichel"
What is the highest Super G that had an 11 Downhill and an overall less than 16?
CREATE TABLE table_name_6 (super_g INTEGER, downhill VARCHAR, overall VARCHAR)
SELECT MAX(super_g) FROM table_name_6 WHERE downhill = "11" AND overall < 16
What is the combined of the overalls less than 34?
CREATE TABLE table_name_82 (combined VARCHAR, overall INTEGER)
SELECT combined FROM table_name_82 WHERE overall < 34
What is the combined of the 14 Super G?
CREATE TABLE table_name_60 (combined VARCHAR, super_g VARCHAR)
SELECT combined FROM table_name_60 WHERE super_g = 14
What album had the reunion label in 2006?
CREATE TABLE table_name_21 (album VARCHAR, label VARCHAR, year VARCHAR)
SELECT album FROM table_name_21 WHERE label = "reunion" AND year = 2006
Who was the artist for the album, Christmas under the reunion label with the guitar?
CREATE TABLE table_name_67 (artist VARCHAR, album VARCHAR, label VARCHAR, credit VARCHAR)
SELECT artist FROM table_name_67 WHERE label = "reunion" AND credit = "guitar" AND album = "christmas"
What is the most recent year for an album listed with a piano credited?
CREATE TABLE table_name_4 (year INTEGER, credit VARCHAR)
SELECT MAX(year) FROM table_name_4 WHERE credit = "piano"
What is Volume:Issue, when Artist is Elton John, and when Weeks on Top is 4?
CREATE TABLE table_name_86 (volume VARCHAR, artist VARCHAR, weeks_on_top VARCHAR)
SELECT volume AS :issue FROM table_name_86 WHERE artist = "elton john" AND weeks_on_top = 4
What is the value in 2008-09 for the Autumn Gold event?
CREATE TABLE table_name_9 (event VARCHAR)
SELECT 2008 AS _09 FROM table_name_9 WHERE event = "autumn gold"
What is the total number of bronze medals of the nation with 4 total medals and 1 silver?
CREATE TABLE table_name_89 (bronze VARCHAR, total VARCHAR, silver VARCHAR)
SELECT COUNT(bronze) FROM table_name_89 WHERE total = 4 AND silver = 1
What is the sum of silver medals of the nation Cuba, which has less than 0 gold?
CREATE TABLE table_name_7 (silver INTEGER, nation VARCHAR, gold VARCHAR)
SELECT SUM(silver) FROM table_name_7 WHERE nation = "cuba" AND gold < 0
What is the total weight of players who play the G position for the Los Angeles D-Fenders?
CREATE TABLE table_name_80 (weight VARCHAR, pos VARCHAR, team VARCHAR)
SELECT COUNT(weight) FROM table_name_80 WHERE pos = "g" AND team = "los angeles d-fenders"
What team does Bill Walker play for?
CREATE TABLE table_name_1 (team VARCHAR, player VARCHAR)
SELECT team FROM table_name_1 WHERE player = "bill walker"
What was the lowest heat for Germany with a rank smaller than 9 for Mike Fenner and a time smaller than 13.52?
CREATE TABLE table_name_51 (heat INTEGER, time VARCHAR, name VARCHAR, nationality VARCHAR, rank VARCHAR)
SELECT MIN(heat) FROM table_name_51 WHERE nationality = "germany" AND rank < 9 AND name = "mike fenner" AND time < 13.52
What is the lowest FA cup that has mohd faizal desa as the player, with a total greater than 0?
CREATE TABLE table_name_22 (fa_cup INTEGER, player VARCHAR, total VARCHAR)
SELECT MIN(fa_cup) FROM table_name_22 WHERE player = "mohd faizal desa" AND total > 0
What is the lowest FA cup that has a league greater than 0, with a Malaysia cup greater than 5?
CREATE TABLE table_name_9 (fa_cup INTEGER, league VARCHAR, malaysia_cup VARCHAR)
SELECT MIN(fa_cup) FROM table_name_9 WHERE league > 0 AND malaysia_cup > 5
How many Malaysia Cups have a total less than 0?
CREATE TABLE table_name_5 (malaysia_cup VARCHAR, total INTEGER)
SELECT COUNT(malaysia_cup) FROM table_name_5 WHERE total < 0
What is the average FA cup that has a league of 0, fahmi hatta as the player, with a Malaysia cup less than 0?
CREATE TABLE table_name_56 (fa_cup INTEGER, malaysia_cup VARCHAR, league VARCHAR, player VARCHAR)
SELECT AVG(fa_cup) FROM table_name_56 WHERE league = 0 AND player = "fahmi hatta" AND malaysia_cup < 0
How many Malaysia Cups have 0 for the total with a league greater than 0?
CREATE TABLE table_name_2 (malaysia_cup VARCHAR, total VARCHAR, league VARCHAR)
SELECT COUNT(malaysia_cup) FROM table_name_2 WHERE total = 0 AND league > 0
What is High Assists, when High Points is Keon Clark (19)?
CREATE TABLE table_name_57 (high_assists VARCHAR, high_points VARCHAR)
SELECT high_assists FROM table_name_57 WHERE high_points = "keon clark (19)"
What is Location Attendance, when High Assists is Alvin Williams (9)?
CREATE TABLE table_name_29 (location_attendance VARCHAR, high_assists VARCHAR)
SELECT location_attendance FROM table_name_29 WHERE high_assists = "alvin williams (9)"
What is High Points, when Location Attendance is Staples Center 18,964?
CREATE TABLE table_name_56 (high_points VARCHAR, location_attendance VARCHAR)
SELECT high_points FROM table_name_56 WHERE location_attendance = "staples center 18,964"
What is High Points, when Team is @ Phoenix?
CREATE TABLE table_name_73 (high_points VARCHAR, team VARCHAR)
SELECT high_points FROM table_name_73 WHERE team = "@ phoenix"
What name has 100 w. pender st. as the address?
CREATE TABLE table_name_6 (name VARCHAR, street_address VARCHAR)
SELECT name FROM table_name_6 WHERE street_address = "100 w. pender st."
How many floors have 207 w. hastings st. as the address?
CREATE TABLE table_name_1 (floors VARCHAR, street_address VARCHAR)
SELECT COUNT(floors) FROM table_name_1 WHERE street_address = "207 w. hastings st."
What is the height m/ft where 207 w. hastings st. is the address?
CREATE TABLE table_name_64 (height_m___ft VARCHAR, street_address VARCHAR)
SELECT height_m___ft FROM table_name_64 WHERE street_address = "207 w. hastings st."
What is the completed list entry number more than 1356460?
CREATE TABLE table_name_58 (completed VARCHAR, list_entry_number INTEGER)
SELECT completed FROM table_name_58 WHERE list_entry_number > 1356460
Which type has a list entry number more than 1356436, named Albion Congregational Church?
CREATE TABLE table_name_64 (type VARCHAR, list_entry_number VARCHAR, name VARCHAR)
SELECT type FROM table_name_64 WHERE list_entry_number > 1356436 AND name = "albion congregational church"
What is the entry number on the list for Fairfield Moravian Church?
CREATE TABLE table_name_13 (list_entry_number VARCHAR, name VARCHAR)
SELECT list_entry_number FROM table_name_13 WHERE name = "fairfield moravian church"
What was the Average Attendance during the Year in which there were 9 Home Games?
CREATE TABLE table_name_12 (average_attendance INTEGER, _number_of_home_games VARCHAR)
SELECT MAX(average_attendance) FROM table_name_12 WHERE _number_of_home_games = 9
Before 2012, what was the greatest # of Home Games with a Canada - USA Rank of 52nd, and an Average Attendance less than 992?
CREATE TABLE table_name_41 (_number_of_home_games INTEGER, average_attendance VARCHAR, year VARCHAR, canada___usa_rank VARCHAR)
SELECT MAX(_number_of_home_games) FROM table_name_41 WHERE year < 2012 AND canada___usa_rank = "52nd" AND average_attendance < 992
After the year 2011, when the Canada - USA Rank was 46th, what was the League Rank?
CREATE TABLE table_name_54 (league VARCHAR, year VARCHAR, canada___usa_rank VARCHAR)
SELECT league AS Rank FROM table_name_54 WHERE year > 2011 AND canada___usa_rank = "46th"
What is Package/Option, when HDTV is no, when Language is Italian, and when Television service is cartello promozionale sky hd?
CREATE TABLE table_name_43 (package_option VARCHAR, television_service VARCHAR, hdtv VARCHAR, language VARCHAR)
SELECT package_option FROM table_name_43 WHERE hdtv = "no" AND language = "italian" AND television_service = "cartello promozionale sky hd"
What is Country, when HDTV is yes, and when Content is cinema?
CREATE TABLE table_name_29 (country VARCHAR, hdtv VARCHAR, content VARCHAR)
SELECT country FROM table_name_29 WHERE hdtv = "yes" AND content = "cinema"
What is HDTV, when Television service is cartello promozionale sky hd?
CREATE TABLE table_name_95 (hdtv VARCHAR, television_service VARCHAR)
SELECT hdtv FROM table_name_95 WHERE television_service = "cartello promozionale sky hd"
What is Content, when Package/Option is sky cinema, and when Language is italian originale?
CREATE TABLE table_name_6 (content VARCHAR, package_option VARCHAR, language VARCHAR)
SELECT content FROM table_name_6 WHERE package_option = "sky cinema" AND language = "italian originale"
What is the Venue with an Attendance that is larger than 6,938?
CREATE TABLE table_name_55 (venue VARCHAR, attendance INTEGER)
SELECT venue FROM table_name_55 WHERE attendance > 6 OFFSET 938
What is the Date with an Opponent that is hearts?
CREATE TABLE table_name_51 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_51 WHERE opponent = "hearts"
What is the Result with a Venue that is n?
CREATE TABLE table_name_45 (result VARCHAR, venue VARCHAR)
SELECT result FROM table_name_45 WHERE venue = "n"
Who was the Coat of Cash Wearing Celebrity in Episode 6?
CREATE TABLE table_name_81 (coat_of_cash_wearing_celebrity VARCHAR, episode_number VARCHAR)
SELECT coat_of_cash_wearing_celebrity FROM table_name_81 WHERE episode_number = 6
What was the air date of episode 5?
CREATE TABLE table_name_33 (air_date VARCHAR, episode_number VARCHAR)
SELECT air_date FROM table_name_33 WHERE episode_number = 5
What is the largest number of races when there are less than 6 podiums, the series is the formula renault 2.0 eurocup, and there are more than 0 wins?
CREATE TABLE table_name_5 (races INTEGER, wins VARCHAR, podiums VARCHAR, series VARCHAR)
SELECT MAX(races) FROM table_name_5 WHERE podiums < 6 AND series = "formula renault 2.0 eurocup" AND wins > 0
Who were the Opponents in the final in the match with a Score in the final of 1–6, 6–3, 2–6?
CREATE TABLE table_name_22 (opponents_in_the_final VARCHAR, score_in_the_final VARCHAR)
SELECT opponents_in_the_final FROM table_name_22 WHERE score_in_the_final = "1–6, 6–3, 2–6"
What Opponents in the final had a match in 1984 with a Score in the final of 7–6, 6–1?
CREATE TABLE table_name_77 (opponents_in_the_final VARCHAR, date VARCHAR, score_in_the_final VARCHAR)
SELECT opponents_in_the_final FROM table_name_77 WHERE date = 1984 AND score_in_the_final = "7–6, 6–1"
How many years were they nominated for outstanding musical?
CREATE TABLE table_name_93 (year VARCHAR, nominee VARCHAR)
SELECT COUNT(year) FROM table_name_93 WHERE nominee = "outstanding musical"
Where was the location for Arras Paul Arras?
CREATE TABLE table_name_24 (location VARCHAR, opponent VARCHAR)
SELECT location FROM table_name_24 WHERE opponent = "arras paul arras"
Which royal house has the name huai?
CREATE TABLE table_name_88 (royal_house VARCHAR, name VARCHAR)
SELECT royal_house FROM table_name_88 WHERE name = "huai"
Who has the title of marquis?
CREATE TABLE table_name_52 (name VARCHAR, title VARCHAR)
SELECT name FROM table_name_52 WHERE title = "marquis"
Which royal house is in the state of chu?
CREATE TABLE table_name_98 (royal_house VARCHAR, state VARCHAR)
SELECT royal_house FROM table_name_98 WHERE state = "chu"
Which state has a king named xiang?
CREATE TABLE table_name_10 (state VARCHAR, title VARCHAR, name VARCHAR)
SELECT state FROM table_name_10 WHERE title = "king" AND name = "xiang"
What's the most recent week for the day of November 5, 1978?
CREATE TABLE table_name_99 (week INTEGER, date VARCHAR)
SELECT MAX(week) FROM table_name_99 WHERE date = "november 5, 1978"
What's the mean week number for November 12, 1978?
CREATE TABLE table_name_9 (week INTEGER, date VARCHAR)
SELECT AVG(week) FROM table_name_9 WHERE date = "november 12, 1978"
What's the mean week number when attendance was 63,263?
CREATE TABLE table_name_88 (week INTEGER, attendance VARCHAR)
SELECT AVG(week) FROM table_name_88 WHERE attendance = 63 OFFSET 263
What is the number of floors that have years under 2008 and were named Guinness Tower?
CREATE TABLE table_name_58 (floors VARCHAR, year VARCHAR, name VARCHAR)
SELECT COUNT(floors) FROM table_name_58 WHERE year < 2008 AND name = "guinness tower"
What is the sum of Year opened when steel was the material with a Span feet of 1476?
CREATE TABLE table_name_75 (year_opened INTEGER, material VARCHAR, span_feet VARCHAR)
SELECT SUM(year_opened) FROM table_name_75 WHERE material = "steel" AND span_feet = 1476
What is the sum of Year opened when the span feet is more than 1247, and the spam metres is 384?
CREATE TABLE table_name_13 (year_opened INTEGER, span_feet VARCHAR, span_metres VARCHAR)
SELECT SUM(year_opened) FROM table_name_13 WHERE span_feet > 1247 AND span_metres = 384
What is average SiO 2, when Na 2 O is 7.53, and when Al 2 O 3 is less than 2.13?
CREATE TABLE table_name_42 (sio_2 INTEGER, na_2_o VARCHAR, al_2_o_3 VARCHAR)
SELECT AVG(sio_2) FROM table_name_42 WHERE na_2_o = 7.53 AND al_2_o_3 < 2.13
What is the highest K 2 O, when Na 2 O is greater than 1.87, when Fe 2 O 3 is greater than 0.07, when Objects is Ritual Disk, and when Al 2 O 3 is less than 0.62?
CREATE TABLE table_name_40 (k_2_o INTEGER, al_2_o_3 VARCHAR, objects VARCHAR, na_2_o VARCHAR, fe_2_o_3 VARCHAR)
SELECT MAX(k_2_o) FROM table_name_40 WHERE na_2_o > 1.87 AND fe_2_o_3 > 0.07 AND objects = "ritual disk" AND al_2_o_3 < 0.62
What is the highest SiO 2, when K 2 O is greater than 0.16, when Fe 2 O 3 is greater than 0.16, and when Na 2 O is less than 7.53?
CREATE TABLE table_name_50 (sio_2 INTEGER, na_2_o VARCHAR, k_2_o VARCHAR, fe_2_o_3 VARCHAR)
SELECT MAX(sio_2) FROM table_name_50 WHERE k_2_o > 0.16 AND fe_2_o_3 > 0.16 AND na_2_o < 7.53
What is Aberdeen team's date of vacancy?
CREATE TABLE table_name_37 (date_of_vacancy VARCHAR, team VARCHAR)
SELECT date_of_vacancy FROM table_name_37 WHERE team = "aberdeen"
What is Motherwell Team's manner of departure?
CREATE TABLE table_name_57 (manner_of_departure VARCHAR, team VARCHAR)
SELECT manner_of_departure FROM table_name_57 WHERE team = "motherwell"
What is the date of appointment for the team with a resigned manner of departure and replaced by Sandy Clark?
CREATE TABLE table_name_2 (date_of_appointment VARCHAR, manner_of_departure VARCHAR, replaced_by VARCHAR)
SELECT date_of_appointment FROM table_name_2 WHERE manner_of_departure = "resigned" AND replaced_by = "sandy clark"
What manner of departure was Dick Advocaat replaced by?
CREATE TABLE table_name_47 (manner_of_departure VARCHAR, replaced_by VARCHAR)
SELECT manner_of_departure FROM table_name_47 WHERE replaced_by = "dick advocaat"
Which amount of lost had an against of more than 22 and 9 points?
CREATE TABLE table_name_30 (lost VARCHAR, against VARCHAR, points VARCHAR)
SELECT lost FROM table_name_30 WHERE against > 22 AND points = 9
What is the total amount of points when the played number was less than 12?
CREATE TABLE table_name_93 (points INTEGER, played INTEGER)
SELECT SUM(points) FROM table_name_93 WHERE played < 12
What is the largest points number where the difference is 12?
CREATE TABLE table_name_69 (points INTEGER, difference VARCHAR)
SELECT MAX(points) FROM table_name_69 WHERE difference = "12"
What is the total number of points where there were 3 losses and a played number bigger than 12?
CREATE TABLE table_name_40 (points INTEGER, lost VARCHAR, played VARCHAR)
SELECT SUM(points) FROM table_name_40 WHERE lost = 3 AND played > 12
What was the winning score for the tournament where Garth Mulroy was the runner-up?
CREATE TABLE table_name_94 (winning_score VARCHAR, runner_s__up VARCHAR)
SELECT winning_score FROM table_name_94 WHERE runner_s__up = "garth mulroy"
Which tournament had a margin of victory of 6 strokes?
CREATE TABLE table_name_34 (tournament VARCHAR, margin_of_victory VARCHAR)
SELECT tournament FROM table_name_34 WHERE margin_of_victory = "6 strokes"
For the tournament played on 16 Jan 2011, what was the winning score?
CREATE TABLE table_name_21 (winning_score VARCHAR, date VARCHAR)
SELECT winning_score FROM table_name_21 WHERE date = "16 jan 2011"
For the tournament ending with a margin of victory of 2 strokes, who was the runner(s)-up?
CREATE TABLE table_name_58 (runner_s__up VARCHAR, margin_of_victory VARCHAR)
SELECT runner_s__up FROM table_name_58 WHERE margin_of_victory = "2 strokes"
What was the winning score for the tournament where Garth Mulroy was the runner-up, and the margin of victory was 1 stroke?
CREATE TABLE table_name_98 (winning_score VARCHAR, margin_of_victory VARCHAR, runner_s__up VARCHAR)
SELECT winning_score FROM table_name_98 WHERE margin_of_victory = "1 stroke" AND runner_s__up = "garth mulroy"
For the tournament ending with a margin of victory of 6 strokes, what was the winning score?
CREATE TABLE table_name_90 (winning_score VARCHAR, margin_of_victory VARCHAR)
SELECT winning_score FROM table_name_90 WHERE margin_of_victory = "6 strokes"
How many Drawns have a Team of aa sΓ£o bento and Points larger than 1?
CREATE TABLE table_name_54 (drawn INTEGER, team VARCHAR, points VARCHAR)
SELECT SUM(drawn) FROM table_name_54 WHERE team = "aa sΓ£o bento" AND points > 1
What is the Drawn has an Against smaller than 20 and Points of 15?
CREATE TABLE table_name_46 (drawn VARCHAR, against VARCHAR, points VARCHAR)
SELECT drawn FROM table_name_46 WHERE against < 20 AND points = 15
How many Against has a Drawn smaller than 1, and a Lost smaller than 5?
CREATE TABLE table_name_86 (against INTEGER, drawn VARCHAR, lost VARCHAR)
SELECT MAX(against) FROM table_name_86 WHERE drawn < 1 AND lost < 5
what is the average Against has Drawn of 2, and a Played larger than 10?
CREATE TABLE table_name_37 (against INTEGER, drawn VARCHAR, played VARCHAR)
SELECT AVG(against) FROM table_name_37 WHERE drawn = 2 AND played > 10
How many goals were there for Johan Cruyff when the rank's less than 3?
CREATE TABLE table_name_36 (goals INTEGER, name VARCHAR, rank VARCHAR)
SELECT SUM(goals) FROM table_name_36 WHERE name = "johan cruyff" AND rank < 3
What is the highest against when the lost is 3 with less than 30 points?
CREATE TABLE table_name_73 (against INTEGER, lost VARCHAR, points VARCHAR)
SELECT MAX(against) FROM table_name_73 WHERE lost = 3 AND points < 30
What is the average Played when the against is 51, and the drawn is more than 1?
CREATE TABLE table_name_9 (played INTEGER, against VARCHAR, drawn VARCHAR)
SELECT AVG(played) FROM table_name_9 WHERE against = 51 AND drawn > 1
What is the result against Clemson?
CREATE TABLE table_name_86 (result VARCHAR, opponent VARCHAR)
SELECT result FROM table_name_86 WHERE opponent = "clemson"
What is the number of Games for the player in Rank 3?
CREATE TABLE table_name_21 (games INTEGER, rank VARCHAR)
SELECT MAX(games) FROM table_name_21 WHERE rank = 3
With more than 69 Assists, what is Dejuan Collins' Rank?
CREATE TABLE table_name_59 (rank VARCHAR, name VARCHAR, assists VARCHAR)
SELECT COUNT(rank) FROM table_name_59 WHERE name = "dejuan collins" AND assists > 69
How many Assists for the Player with 13 Games and a Rank less than 3?
CREATE TABLE table_name_29 (assists INTEGER, games VARCHAR, rank VARCHAR)
SELECT SUM(assists) FROM table_name_29 WHERE games = 13 AND rank < 3
What is the lowest number of uncommitted superdelegates for a state with more than 16 total and 2 for Hillary Clinton?
CREATE TABLE table_name_16 (uncommitted INTEGER, total VARCHAR, hillary_clinton VARCHAR)
SELECT MIN(uncommitted) FROM table_name_16 WHERE total > 16 AND hillary_clinton = 2
What Japanese prefecture has Ibaraki, Tsukuba?
CREATE TABLE table_name_15 (japanese VARCHAR, prefecture VARCHAR, name VARCHAR)
SELECT japanese FROM table_name_15 WHERE prefecture = "ibaraki" AND name = "tsukuba"