question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 |
|---|---|---|
What platform came out before 2009 with the game wii sports? | CREATE TABLE table_name_38 (platform_s_ VARCHAR, year VARCHAR, game VARCHAR) | SELECT platform_s_ FROM table_name_38 WHERE year < 2009 AND game = "wii sports" |
What is the total number of points combined from the teams that played over 14 games? | CREATE TABLE table_name_52 (points VARCHAR, played INTEGER) | SELECT COUNT(points) FROM table_name_52 WHERE played > 14 |
Name the months in the malayalam era for കുംഭം | CREATE TABLE table_169955_1 (months_in_malayalam_era VARCHAR, in_malayalam VARCHAR) | SELECT months_in_malayalam_era FROM table_169955_1 WHERE in_malayalam = "കുംഭം" |
Who is the captain of the 2012 NRL season competition? | CREATE TABLE table_name_75 (captain_s_ VARCHAR, competition VARCHAR) | SELECT captain_s_ FROM table_name_75 WHERE competition = "2012 nrl season" |
WHich Category in White has a Black of 38,05%? | CREATE TABLE table_name_35 (white VARCHAR, black VARCHAR) | SELECT white FROM table_name_35 WHERE black = "38,05%" |
Which Races has a T.C. of 3rd, and a D.C. of 7th? | CREATE TABLE table_name_14 (races INTEGER, tc VARCHAR, dc VARCHAR) | SELECT MIN(races) FROM table_name_14 WHERE tc = "3rd" AND dc = "7th" |
List the names of buildings with at least 200 feet of height and with at least 20 floors. | CREATE TABLE building (name VARCHAR, height_feet VARCHAR, floors VARCHAR) | SELECT name FROM building WHERE height_feet >= 200 AND floors >= 20 |
What year shows the Entrant of bmw motorsport? | CREATE TABLE table_name_15 (year INTEGER, entrant VARCHAR) | SELECT SUM(year) FROM table_name_15 WHERE entrant = "bmw motorsport" |
What is the total number of Block for the Player with less than 85 Weight and more than 187 Height? | CREATE TABLE table_name_73 (block VARCHAR, weight VARCHAR, height VARCHAR) | SELECT COUNT(block) FROM table_name_73 WHERE weight < 85 AND height > 187 |
List the dog name, age and weight of the dogs who have been abandoned? 1 stands for yes, and 0 stands for no. | CREATE TABLE Dogs (name VARCHAR, age VARCHAR, weight VARCHAR, abandoned_yn VARCHAR) | SELECT name, age, weight FROM Dogs WHERE abandoned_yn = 1 |
How many locations does the team Newcastle Jets come from? | CREATE TABLE table_1301373_1 (location VARCHAR, team VARCHAR) | SELECT COUNT(location) FROM table_1301373_1 WHERE team = "Newcastle Jets" |
How many points does the team with 3 losses have? | CREATE TABLE table_name_52 (points VARCHAR, lost VARCHAR) | SELECT points FROM table_name_52 WHERE lost = "3" |
What is the smoke point with a total fat of 100g, and monounsaturated fat of 46g? | CREATE TABLE table_name_97 (smoke_point VARCHAR, total_fat VARCHAR, monounsaturated_fat VARCHAR) | SELECT smoke_point FROM table_name_97 WHERE total_fat = "100g" AND monounsaturated_fat = "46g" |
What is the total difference for teams that played less than 6 games? | CREATE TABLE table_name_38 (diff INTEGER, played INTEGER) | SELECT SUM(diff) FROM table_name_38 WHERE played < 6 |
If the height is 181cm, what was the position? | CREATE TABLE table_22344463_2 (position VARCHAR, height VARCHAR) | SELECT position FROM table_22344463_2 WHERE height = "181cm" |
Which competition did Târlea come in 4th place, in 2003 at Budapest, Hungary? | CREATE TABLE table_name_55 (competition VARCHAR, venue VARCHAR, position VARCHAR, year VARCHAR) | SELECT competition FROM table_name_55 WHERE position = "4th" AND year > 2003 AND venue = "budapest, hungary" |
How many points did Team Rothmans International have after 1975 when their Chassis was a March 771? | CREATE TABLE table_name_91 (points VARCHAR, chassis VARCHAR, year VARCHAR, entrant VARCHAR) | SELECT points FROM table_name_91 WHERE year > 1975 AND entrant = "team rothmans international" AND chassis = "march 771" |
How many rounds ended with a score of 16-52? | CREATE TABLE table_13328239_4 (round VARCHAR, score VARCHAR) | SELECT COUNT(round) FROM table_13328239_4 WHERE score = "16-52" |
Name the location for abraham baldwin agricultural college | CREATE TABLE table_16734640_1 (location VARCHAR, institution VARCHAR) | SELECT location FROM table_16734640_1 WHERE institution = "Abraham Baldwin Agricultural College" |
If the points were 0, what was the losing bonus? | CREATE TABLE table_name_32 (losing_bonus VARCHAR, points VARCHAR) | SELECT losing_bonus FROM table_name_32 WHERE points = "0" |
what is the money for argentina? | CREATE TABLE table_name_34 (money___ VARCHAR, country VARCHAR) | SELECT COUNT(money___) AS $__ FROM table_name_34 WHERE country = "argentina" |
How many peak positions were there on the daily charts? | CREATE TABLE table_23180638_1 (peak_position VARCHAR, oricon_albums_chart VARCHAR) | SELECT peak_position FROM table_23180638_1 WHERE oricon_albums_chart = "Daily Charts" |
What's the tail number of the airplane involved in the accident described as crashed? | CREATE TABLE table_229917_2 (tail_number VARCHAR, brief_description VARCHAR) | SELECT tail_number FROM table_229917_2 WHERE brief_description = "Crashed" |
What was the home score for the Home team Melbourne? | CREATE TABLE table_name_63 (home_team VARCHAR) | SELECT home_team AS score FROM table_name_63 WHERE home_team = "melbourne" |
Which position has new Jersey Devils as the nhl team? | CREATE TABLE table_2897457_3 (position VARCHAR, nhl_team VARCHAR) | SELECT position FROM table_2897457_3 WHERE nhl_team = "New Jersey Devils" |
What is the lowest utility PV with hydro great than 289.25 and renweable total larger than 520.07? | CREATE TABLE table_name_87 (utility_pv INTEGER, hydro VARCHAR, renewable_total VARCHAR) | SELECT MIN(utility_pv) FROM table_name_87 WHERE hydro > 289.25 AND renewable_total > 520.07 |
Find the total amount of loans offered by each bank branch. | CREATE TABLE loan (branch_id VARCHAR); CREATE TABLE bank (bname VARCHAR, branch_id VARCHAR) | SELECT SUM(amount), T1.bname FROM bank AS T1 JOIN loan AS T2 ON T1.branch_id = T2.branch_id GROUP BY T1.bname |
what is the season when the lead is john shuster and third is shawn rojeski? | CREATE TABLE table_name_54 (season VARCHAR, lead VARCHAR, third VARCHAR) | SELECT season FROM table_name_54 WHERE lead = "john shuster" AND third = "shawn rojeski" |
How many tries against did the club with 1 drawn and 41 points have? | CREATE TABLE table_name_19 (tries_against VARCHAR, drawn VARCHAR, points VARCHAR) | SELECT tries_against FROM table_name_19 WHERE drawn = "1" AND points = "41" |
What is the lowest decile that Ohau School has? | CREATE TABLE table_name_10 (decile INTEGER, name VARCHAR) | SELECT MIN(decile) FROM table_name_10 WHERE name = "ohau school" |
What are the maximum and minimum number of transit passengers of all aiports. | CREATE TABLE airport (Transit_Passengers INTEGER) | SELECT MAX(Transit_Passengers), MIN(Transit_Passengers) FROM airport |
What are the name, independence year, and surface area of the country with the smallest population? | CREATE TABLE country (Name VARCHAR, SurfaceArea VARCHAR, IndepYear VARCHAR, Population VARCHAR) | SELECT Name, SurfaceArea, IndepYear FROM country ORDER BY Population LIMIT 1 |
What is the IDOE Profile in North Manchester? | CREATE TABLE table_1984697_85 (idoe_profile VARCHAR, city___town VARCHAR) | SELECT idoe_profile FROM table_1984697_85 WHERE city___town = "North Manchester" |
What is the score when TSV Siegen was the runner-up? | CREATE TABLE table_name_59 (score VARCHAR, runners_up VARCHAR) | SELECT score FROM table_name_59 WHERE runners_up = "tsv siegen" |
what is the date of barbagallo raceway? | CREATE TABLE table_name_69 (date VARCHAR, event_circuit VARCHAR) | SELECT date FROM table_name_69 WHERE event_circuit = "barbagallo raceway" |
What week ended in a result of w 30-3, and had an attendance less than 62,795? | CREATE TABLE table_name_53 (week INTEGER, result VARCHAR, attendance VARCHAR) | SELECT MIN(week) FROM table_name_53 WHERE result = "w 30-3" AND attendance < 62 OFFSET 795 |
In what order were the Bee Gees as the artist when it was a result of bottom 3? | CREATE TABLE table_name_30 (order__number VARCHAR, result VARCHAR, original_artist VARCHAR) | SELECT order__number FROM table_name_30 WHERE result = "bottom 3" AND original_artist = "bee gees" |
On what day was there a Home game for Gillingham? | CREATE TABLE table_name_4 (attendance VARCHAR, home_team VARCHAR) | SELECT attendance FROM table_name_4 WHERE home_team = "gillingham" |
How many years have an Award of press award? | CREATE TABLE table_name_47 (year VARCHAR, award VARCHAR) | SELECT COUNT(year) FROM table_name_47 WHERE award = "press award" |
What is the highest season number with 57 draws, rank 20, and more than 1 spell? | CREATE TABLE table_name_28 (seasons INTEGER, spells VARCHAR, drawn VARCHAR, rank VARCHAR) | SELECT MAX(seasons) FROM table_name_28 WHERE drawn = 57 AND rank = 20 AND spells > 1 |
Name the lowest average for interview more than 9.57 and delaware and evening gown more than 9.77 | CREATE TABLE table_name_42 (average INTEGER, evening_gown VARCHAR, interview VARCHAR, country VARCHAR) | SELECT MIN(average) FROM table_name_42 WHERE interview > 9.57 AND country = "delaware" AND evening_gown > 9.77 |
What is the enrollment ration in primary in the region where the enrollment ratio in preschool is 50.23? | CREATE TABLE table_25042332_22 (primary__6_13_years_ VARCHAR, preschool__0_5_years_ VARCHAR) | SELECT primary__6_13_years_ FROM table_25042332_22 WHERE preschool__0_5_years_ = "50.23" |
What is the fewest wins that has fewer than 23 goals scored, team of 2 de Mayo, and fewer than 7 draws? | CREATE TABLE table_name_16 (wins INTEGER, draws VARCHAR, scored VARCHAR, team VARCHAR) | SELECT MIN(wins) FROM table_name_16 WHERE scored < 23 AND team = "2 de mayo" AND draws < 7 |
What Venue had 2 or more Goals in a Friendly Competition? | CREATE TABLE table_name_48 (venue VARCHAR, competition VARCHAR, goal VARCHAR) | SELECT venue FROM table_name_48 WHERE competition = "friendly" AND goal > 2 |
What is Pilot, when Place is "Goose Green", and when Date is "27 May 1982"? | CREATE TABLE table_name_8 (pilot VARCHAR, place VARCHAR, date VARCHAR) | SELECT pilot FROM table_name_8 WHERE place = "goose green" AND date = "27 may 1982" |
What are the names of musicals with nominee "Bob Fosse"? | CREATE TABLE musical (Name VARCHAR, Nominee VARCHAR) | SELECT Name FROM musical WHERE Nominee = "Bob Fosse" |
What is the maximum number of silvers for a country with fewer than 12 golds and a total less than 8? | CREATE TABLE table_name_72 (silver INTEGER, gold VARCHAR, total VARCHAR) | SELECT MAX(silver) FROM table_name_72 WHERE gold < 12 AND total < 8 |
How many episodes did David Jackson write and direct? | CREATE TABLE table_11695215_1 (written_by VARCHAR, directed_by VARCHAR) | SELECT COUNT(written_by) FROM table_11695215_1 WHERE directed_by = "David Jackson" |
How many laps did the rider with a grid larger than 11, a Honda cbr1000rr bike, and a time of +42.633? | CREATE TABLE table_name_17 (laps VARCHAR, time VARCHAR, grid VARCHAR, bike VARCHAR) | SELECT laps FROM table_name_17 WHERE grid > 11 AND bike = "honda cbr1000rr" AND time = "+42.633" |
Name the 2012 for 2009 of 1r | CREATE TABLE table_name_19 (Id VARCHAR) | SELECT 2012 FROM table_name_19 WHERE 2009 = "1r" |
Band of am, and a Callsign of 6wh has what purpose? | CREATE TABLE table_name_71 (purpose VARCHAR, band VARCHAR, callsign VARCHAR) | SELECT purpose FROM table_name_71 WHERE band = "am" AND callsign = "6wh" |
what's the new south wales with crop (kilotonnes) being canola | CREATE TABLE table_1057262_2 (new_south_wales VARCHAR, crop__kilotonnes_ VARCHAR) | SELECT new_south_wales FROM table_1057262_2 WHERE crop__kilotonnes_ = "Canola" |
What label has RTRADLP 346 as catalogue? | CREATE TABLE table_name_90 (label VARCHAR, catalogue VARCHAR) | SELECT label FROM table_name_90 WHERE catalogue = "rtradlp 346" |
What is the name of the country that has 18 May 2004 as the date? | CREATE TABLE table_name_27 (country VARCHAR, date VARCHAR) | SELECT country FROM table_name_27 WHERE date = "18 may 2004" |
What home team has blackpool as the away team? | CREATE TABLE table_name_80 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_name_80 WHERE away_team = "blackpool" |
What is the lowest total data processing and exploitation of 00 0,228, and a management and support larger than 1,7? | CREATE TABLE table_name_72 (total INTEGER, data_processing_and_exploitation VARCHAR, management_and_support VARCHAR) | SELECT MIN(total) FROM table_name_72 WHERE data_processing_and_exploitation = "00 0,228" AND management_and_support > 1 OFFSET 7 |
What is the toll for light vehicles at the plaza where the toll for heavy vehicles with 2 axles is r87.00? | CREATE TABLE table_1211545_2 (light_vehicle VARCHAR, heavy_vehicle__2_axles_ VARCHAR) | SELECT light_vehicle FROM table_1211545_2 WHERE heavy_vehicle__2_axles_ = "R87.00" |
What round had Canada with a draft of 1970 and a pick of 7? | CREATE TABLE table_name_34 (round INTEGER, pick VARCHAR, nationality VARCHAR, draft VARCHAR) | SELECT MAX(round) FROM table_name_34 WHERE nationality = "canada" AND draft < 1970 AND pick = 7 |
What is the sum of Overall, when Round is less than 24, and when College is North Carolina State? | CREATE TABLE table_name_50 (overall INTEGER, round VARCHAR, college VARCHAR) | SELECT SUM(overall) FROM table_name_50 WHERE round < 24 AND college = "north carolina state" |
What is Score, when Venue is Riyadh, Saudi Arabia, and when Result is "Win"? | CREATE TABLE table_name_22 (score VARCHAR, venue VARCHAR, result VARCHAR) | SELECT score FROM table_name_22 WHERE venue = "riyadh, saudi arabia" AND result = "win" |
Show the first name, last name, and phone number for all female faculty members. | CREATE TABLE Faculty (Fname VARCHAR, Lname VARCHAR, phone VARCHAR, Sex VARCHAR) | SELECT Fname, Lname, phone FROM Faculty WHERE Sex = 'F' |
Who is the outgoing manager when the team is simurq pfc? | CREATE TABLE table_27057070_3 (outgoing_manager VARCHAR, team VARCHAR) | SELECT outgoing_manager FROM table_27057070_3 WHERE team = "Simurq PFC" |
At census ranking 1,184 of 5,008, what was the minimum population? | CREATE TABLE table_170961_2 (population INTEGER, census_ranking VARCHAR) | SELECT MIN(population) FROM table_170961_2 WHERE census_ranking = "1,184 of 5,008" |
What is the winning score before 1959, with runner-up Jackie Pung? | CREATE TABLE table_name_87 (winning_score VARCHAR, year VARCHAR, runner_s__up VARCHAR) | SELECT winning_score FROM table_name_87 WHERE year < 1959 AND runner_s__up = "jackie pung" |
What is the Standard cost (USD) of Kwin team creator? | CREATE TABLE table_name_95 (standard_cost__usd_ VARCHAR, creator VARCHAR) | SELECT standard_cost__usd_ FROM table_name_95 WHERE creator = "kwin team" |
What was the manner of departure for the team Anderlecht? | CREATE TABLE table_name_70 (manner_of_departure VARCHAR, team VARCHAR) | SELECT manner_of_departure FROM table_name_70 WHERE team = "anderlecht" |
What is the loses total when there is less than 4 draws, less than 105 conceded goals, less than 38 goals scored, and the club is positioned greater than 2? | CREATE TABLE table_name_54 (loses INTEGER, goals_scored VARCHAR, position VARCHAR, draws VARCHAR, goals_conceded VARCHAR) | SELECT SUM(loses) FROM table_name_54 WHERE draws < 4 AND goals_conceded < 105 AND position > 2 AND goals_scored < 38 |
Who did Teo Fabi drive for when he won and had pole position? | CREATE TABLE table_name_74 (winning_team VARCHAR, winning_driver VARCHAR, pole_position VARCHAR) | SELECT winning_team FROM table_name_74 WHERE winning_driver = "teo fabi" AND pole_position = "teo fabi" |
When the venue was punt road oval, what was the Home teams score? | CREATE TABLE table_name_74 (home_team VARCHAR, venue VARCHAR) | SELECT home_team AS score FROM table_name_74 WHERE venue = "punt road oval" |
How many draft picks were for Winnipeg blue bombers? | CREATE TABLE table_25085059_3 (pick__number VARCHAR, cfl_team VARCHAR) | SELECT COUNT(pick__number) FROM table_25085059_3 WHERE cfl_team = "Winnipeg Blue Bombers" |
What Player's Score is 72-70-66=208? | CREATE TABLE table_name_86 (player VARCHAR, score VARCHAR) | SELECT player FROM table_name_86 WHERE score = 72 - 70 - 66 = 208 |
List the information of all instructors ordered by their salary in ascending order. | CREATE TABLE instructor (salary VARCHAR) | SELECT * FROM instructor ORDER BY salary |
What was the speed of the rider that earned 1 point? | CREATE TABLE table_name_24 (speed VARCHAR, points VARCHAR) | SELECT speed FROM table_name_24 WHERE points = 1 |
Name the number of believers for khosrowa | CREATE TABLE table_24613895_1 (number_of_believers VARCHAR, name_of_village VARCHAR) | SELECT number_of_believers FROM table_24613895_1 WHERE name_of_village = "Khosrowa" |
Which opponent has a record of 70-52? | CREATE TABLE table_name_77 (opponent VARCHAR, record VARCHAR) | SELECT opponent FROM table_name_77 WHERE record = "70-52" |
Who was the opposition at 11,682 excl. exhibition match? | CREATE TABLE table_name_39 (opposition VARCHAR, stadium VARCHAR) | SELECT opposition FROM table_name_39 WHERE stadium = "11,682 excl. exhibition match" |
What is the round number of the round against melbourne on saturday, 4 april 2:10pm? | CREATE TABLE table_29033869_3 (round INTEGER, opponent VARCHAR, date VARCHAR) | SELECT MIN(round) FROM table_29033869_3 WHERE opponent = "Melbourne" AND date = "Saturday, 4 April 2:10pm" |
Which shoulder has a Neck of 7.3 (.288)? | CREATE TABLE table_name_41 (shoulder VARCHAR, neck VARCHAR) | SELECT shoulder FROM table_name_41 WHERE neck = "7.3 (.288)" |
What is the position of the player who got 6 (4 in 34.49s) in the 6 atlas stones event? | CREATE TABLE table_24302700_6 (position VARCHAR, event_6_atlas_stones VARCHAR) | SELECT position FROM table_24302700_6 WHERE event_6_atlas_stones = "6 (4 in 34.49s)" |
Who is the designer of the Christmas: Winter Fun (USA) stamp? | CREATE TABLE table_11900773_6 (design VARCHAR, theme VARCHAR) | SELECT design FROM table_11900773_6 WHERE theme = "Christmas: Winter Fun (USA)" |
what is the points against when drawn is drawn? | CREATE TABLE table_name_96 (points_against VARCHAR) | SELECT points_against FROM table_name_96 WHERE "drawn" = "drawn" |
Title of the angry brigade involves which lowest year? | CREATE TABLE table_name_49 (year INTEGER, title VARCHAR) | SELECT MIN(year) FROM table_name_49 WHERE title = "the angry brigade" |
What Seve Ballesteros's score? | CREATE TABLE table_name_82 (score VARCHAR, player VARCHAR) | SELECT score FROM table_name_82 WHERE player = "seve ballesteros" |
Which school, club team, or country played for the rockets in the years 2000-01? | CREATE TABLE table_11734041_3 (school_club_team_country VARCHAR, years_for_rockets VARCHAR) | SELECT school_club_team_country FROM table_11734041_3 WHERE years_for_rockets = "2000-01" |
Who was partner for the 1988 world group i edition? | CREATE TABLE table_name_23 (partner VARCHAR, edition VARCHAR) | SELECT partner FROM table_name_23 WHERE edition = "1988 world group i" |
How many wins did Glenelg FL of bahgallah have when there were more than 3 byes? | CREATE TABLE table_name_93 (wins VARCHAR, glenelg_fl VARCHAR, byes VARCHAR) | SELECT COUNT(wins) FROM table_name_93 WHERE glenelg_fl = "bahgallah" AND byes > 3 |
What was the date the record became 26–14–9? | CREATE TABLE table_name_35 (date VARCHAR, record VARCHAR) | SELECT date FROM table_name_35 WHERE record = "26–14–9" |
What is the average score when the swimsuit score is 8.503? | CREATE TABLE table_12094300_1 (average VARCHAR, swimsuit VARCHAR) | SELECT average FROM table_12094300_1 WHERE swimsuit = "8.503" |
What is 1st Leg, when Team #2 is "Emelec"? | CREATE TABLE table_name_76 (team__number2 VARCHAR) | SELECT 1 AS st_leg FROM table_name_76 WHERE team__number2 = "emelec" |
What date was the men's 100m breaststroke in heat 6? | CREATE TABLE table_name_74 (date VARCHAR, event VARCHAR, heat_semifinal_final VARCHAR) | SELECT date FROM table_name_74 WHERE event = "men's 100m breaststroke" AND heat_semifinal_final = "heat 6" |
What is the assembled date of the parliament elected in 1620/21? | CREATE TABLE table_name_47 (assembled VARCHAR, elected VARCHAR) | SELECT assembled FROM table_name_47 WHERE elected = "1620/21" |
What kind of surface was the Tournament at Sunderland played on? | CREATE TABLE table_name_32 (surface VARCHAR, tournament VARCHAR) | SELECT surface FROM table_name_32 WHERE tournament = "sunderland" |
What is Weight, when Length is 1168mm / 46 in? | CREATE TABLE table_name_13 (weight VARCHAR, length VARCHAR) | SELECT weight FROM table_name_13 WHERE length = "1168mm / 46 in" |
What is Years, when Jersey Number(s) is 5? | CREATE TABLE table_name_43 (years VARCHAR, jersey_number_s_ VARCHAR) | SELECT years FROM table_name_43 WHERE jersey_number_s_ = "5" |
Name the 2nd runner-up for yuming lai (賴銘偉) | CREATE TABLE table_name_89 (winner VARCHAR) | SELECT 2 AS nd_runner_up FROM table_name_89 WHERE winner = "yuming lai (賴銘偉)" |
What is title of episode 06-02-406? | CREATE TABLE table_1876825_5 (title VARCHAR, production_code VARCHAR) | SELECT title FROM table_1876825_5 WHERE production_code = "06-02-406" |
What was the final score in the game in which the Detroit Lions were the home team? | CREATE TABLE table_name_11 (final_score VARCHAR, host_team VARCHAR) | SELECT final_score FROM table_name_11 WHERE host_team = "detroit lions" |
What is the number of Years at Club for the player who has had more games than 28, more Goals than 225, and his Debut year was after 1950? | CREATE TABLE table_name_77 (years_at_club VARCHAR, debut_year VARCHAR, games VARCHAR, goals VARCHAR) | SELECT years_at_club FROM table_name_77 WHERE games > 28 AND goals > 225 AND debut_year > 1950 |
Which Clock Multiplier has a Model Number of c7-m 764? | CREATE TABLE table_name_23 (clock_multiplier VARCHAR, model_number VARCHAR) | SELECT clock_multiplier FROM table_name_23 WHERE model_number = "c7-m 764" |
What is SIte, when Date is "September 13"? | CREATE TABLE table_name_67 (site VARCHAR, date VARCHAR) | SELECT site FROM table_name_67 WHERE date = "september 13" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.