answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT round FROM table_name_68 WHERE player = "zack walz"
Name the Round which has a Player of zack walz?
CREATE TABLE table_name_68 (round VARCHAR, player VARCHAR)
SELECT title FROM table_22078906_2 WHERE directed_by = "William Webb"
What is the title of the episode directed by William Webb?
CREATE TABLE table_22078906_2 (title VARCHAR, directed_by VARCHAR)
SELECT artist FROM table_name_32 WHERE year = 2003
Which artist was 2003?
CREATE TABLE table_name_32 (artist VARCHAR, year VARCHAR)
SELECT result FROM table_name_49 WHERE year < 2010 AND tournament = "hypo-meeting"
What is the result of the hypo-meeting before 2010?
CREATE TABLE table_name_49 (result VARCHAR, year VARCHAR, tournament VARCHAR)
SELECT 2007 FROM table_name_71 WHERE 2011 = "not held" AND 2012 = "not held"
what is 2007 when 2011 is not held and 2012 is not held?
CREATE TABLE table_name_71 (Id VARCHAR)
SELECT high_rebounds FROM table_23285849_6 WHERE game = 29
Who tied for highest rebounds in game 29?
CREATE TABLE table_23285849_6 (high_rebounds VARCHAR, game VARCHAR)
SELECT COUNT(market_value__billion_) AS $_ FROM table_name_34 WHERE profits__billion_$_ = 20.96 AND assets__billion_$_ < 166.99
What is the total market value in billions of the company with 20.96 billion in profits and less than 166.99 billions in assets?
CREATE TABLE table_name_34 (market_value__billion_ VARCHAR, profits__billion_$_ VARCHAR, assets__billion_$_ VARCHAR)
SELECT MIN(points) FROM table_27539808_5 WHERE game = 32
What is the lowest number of points for game 32?
CREATE TABLE table_27539808_5 (points INTEGER, game VARCHAR)
SELECT professional_id, last_name, cell_number FROM Professionals WHERE state = 'Indiana' UNION SELECT T1.professional_id, T1.last_name, T1.cell_number FROM Professionals AS T1 JOIN Treatments AS T2 ON T1.professional_id = T2.professional_id GROUP BY T1.professional_id HAVING COUNT(*) > 2
Which professionals live in the state of Indiana or have done treatment on more than 2 treatments? List his or her id, last name and cell phone.
CREATE TABLE Treatments (professional_id VARCHAR); CREATE TABLE Professionals (professional_id VARCHAR, last_name VARCHAR, cell_number VARCHAR); CREATE TABLE Professionals (professional_id VARCHAR, last_name VARCHAR, cell_number VARCHAR, state VARCHAR)
SELECT SUM(year) FROM table_name_15 WHERE issue_price = "$1089.95" AND mintage < 900
What is the Year of the Coin with an Issue Price of $1089.95 and Mintage less than 900?
CREATE TABLE table_name_15 (year INTEGER, issue_price VARCHAR, mintage VARCHAR)
SELECT player FROM table_name_71 WHERE goals > 10 AND debut_year < 1993 AND years_at_club = "1990–1993"
Which Player has Goals larger than 10, and a Debut year smaller than 1993, and Years at club of 1990–1993?
CREATE TABLE table_name_71 (player VARCHAR, years_at_club VARCHAR, goals VARCHAR, debut_year VARCHAR)
SELECT us_viewers__millions_ FROM table_22570439_1 WHERE series__number = 83
How many u.s. viewers (million) have a series # 83?
CREATE TABLE table_22570439_1 (us_viewers__millions_ VARCHAR, series__number VARCHAR)
SELECT on_air_id FROM table_name_24 WHERE frequency = "105.9" AND purpose = "commercial"
What is the On-air ID with the frequency of 105.9, and purpose of commercial?
CREATE TABLE table_name_24 (on_air_id VARCHAR, frequency VARCHAR, purpose VARCHAR)
SELECT COUNT(bronze) FROM table_name_55 WHERE total > 12 AND gold < 5
When there are more than 12 total medals and less than 5 gold medals, how many bronze medals are there?
CREATE TABLE table_name_55 (bronze VARCHAR, total VARCHAR, gold VARCHAR)
SELECT AVG(losses) FROM table_name_8 WHERE club = "warrnambool" AND draws < 19
What are the losses of Warrnambool with a draw less than 19?
CREATE TABLE table_name_8 (losses INTEGER, club VARCHAR, draws VARCHAR)
SELECT MIN(against) FROM table_name_38 WHERE ntfa_div_2 = "fingal valley"
What is the lowest number of against of NTFA Div 2 Fingal Valley?
CREATE TABLE table_name_38 (against INTEGER, ntfa_div_2 VARCHAR)
SELECT stadium FROM table_name_74 WHERE bowl_game = "fiesta bowl"
What stadium was the Fiesta Bowl played at?
CREATE TABLE table_name_74 (stadium VARCHAR, bowl_game VARCHAR)
SELECT SUM(altitude__mslm_) FROM table_name_89 WHERE density__inhabitants_km_2__ < 1467.5 AND common_of = "moncalieri"
Which Altitude (mslm) has a Density (inhabitants/km 2) smaller than 1467.5, and a Common of moncalieri?
CREATE TABLE table_name_89 (altitude__mslm_ INTEGER, density__inhabitants_km_2__ VARCHAR, common_of VARCHAR)
SELECT Reign, Days_held FROM wrestler
Show the reign and days held of wrestlers.
CREATE TABLE wrestler (Reign VARCHAR, Days_held VARCHAR)
SELECT date FROM table_name_95 WHERE opponent = "@mil" AND record = "45-16"
Opponent of @mil, and a Record of 45-16 happened on what date?
CREATE TABLE table_name_95 (date VARCHAR, opponent VARCHAR, record VARCHAR)
SELECT finish FROM table_name_94 WHERE total > 284 AND to_par = "+5" AND player = "nick faldo"
In what place did Nick Faldo, who had more than 284 points and a to par score of +5, finish?
CREATE TABLE table_name_94 (finish VARCHAR, player VARCHAR, total VARCHAR, to_par VARCHAR)
SELECT format FROM table_10333757_1 WHERE branding = "1290 WKBK W281AU 104.1"
What is the Format for Branding of 1290 wkbk w281au 104.1?
CREATE TABLE table_10333757_1 (format VARCHAR, branding VARCHAR)
SELECT MAX(bodyweight) FROM table_name_37 WHERE clean_ & _jerk > 120 AND total__kg_ = 245
What is the highest Bodyweight associated with a Clean & jerk larger than 120, and a Total (kg) of 245?
CREATE TABLE table_name_37 (bodyweight INTEGER, total__kg_ VARCHAR, clean_ VARCHAR, _jerk VARCHAR)
SELECT MIN(score) FROM table_name_28 WHERE player = "alastair forsyth"
What is the lowest score that has alastair forsyth as the player?
CREATE TABLE table_name_28 (score INTEGER, player VARCHAR)
SELECT main_cast_seasons FROM table_name_13 WHERE portrayed_by = "joe jonas"
Which main cast seasons were portrayed by Joe Jonas?
CREATE TABLE table_name_13 (main_cast_seasons VARCHAR, portrayed_by VARCHAR)
SELECT fname, lname FROM student WHERE city_code <> 'HKG' ORDER BY age
List the first and last name of students who are not living in the city with code HKG, and sorted the results by their ages.
CREATE TABLE student (fname VARCHAR, lname VARCHAR, city_code VARCHAR, age VARCHAR)
SELECT MIN(silver) FROM table_name_30 WHERE gold > 0 AND nation = "switzerland"
What is the low silver total for switzerland with over 0 golds?
CREATE TABLE table_name_30 (silver INTEGER, gold VARCHAR, nation VARCHAR)
SELECT team_s_ FROM table_2463383_2 WHERE avg_start = "20.5"
Name the team for avg start being 20.5
CREATE TABLE table_2463383_2 (team_s_ VARCHAR, avg_start VARCHAR)
SELECT T2.Name, T1.Company FROM entrepreneur AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID ORDER BY T1.Money_Requested
List the names of entrepreneurs and their companies in descending order of money requested?
CREATE TABLE entrepreneur (Company VARCHAR, People_ID VARCHAR, Money_Requested VARCHAR); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR)
SELECT status FROM table_13833770_3 WHERE incumbent = "Eliot Engel"
what's the status with incumbent being eliot engel
CREATE TABLE table_13833770_3 (status VARCHAR, incumbent VARCHAR)
SELECT Occupation, COUNT(*) FROM player GROUP BY Occupation
Show different occupations along with the number of players in each occupation.
CREATE TABLE player (Occupation VARCHAR)
SELECT date_of_appointment FROM table_17327264_3 WHERE manner_of_departure = "Sacked" AND position_in_table = "14th" AND replaced_by = "Marco Kostmann"
Name the date of appointment for sacked and 14th position replaced by marco kostmann
CREATE TABLE table_17327264_3 (date_of_appointment VARCHAR, replaced_by VARCHAR, manner_of_departure VARCHAR, position_in_table VARCHAR)
SELECT university FROM table_24697604_1 WHERE year_founded = 1898
What university was founded in 1898?
CREATE TABLE table_24697604_1 (university VARCHAR, year_founded VARCHAR)
SELECT MIN(catches) FROM table_26041144_16 WHERE player = "Hashan Tillakaratne"
If the player is Hashan Tillakaratne, what is the catches minimum?
CREATE TABLE table_26041144_16 (catches INTEGER, player VARCHAR)
SELECT studio FROM table_name_85 WHERE director = "reginald hudlin"
What studio is director Reginald Hudlin from?
CREATE TABLE table_name_85 (studio VARCHAR, director VARCHAR)
SELECT Citizenship, MAX(Net_Worth_Millions) FROM singer GROUP BY Citizenship
Show different citizenships and the maximum net worth of singers of each citizenship.
CREATE TABLE singer (Citizenship VARCHAR, Net_Worth_Millions INTEGER)
SELECT score FROM table_name_98 WHERE away_team = "middlesbrough"
Which Score has an Away team of middlesbrough?
CREATE TABLE table_name_98 (score VARCHAR, away_team VARCHAR)
SELECT MIN(first_elected) FROM table_1341423_23 WHERE incumbent = "Jim Ramstad"
What year was incumbent jim ramstad first elected?
CREATE TABLE table_1341423_23 (first_elected INTEGER, incumbent VARCHAR)
SELECT results FROM table_name_1 WHERE style = "contemporary jazz"
What was the result of the dance which had a style of contemporary jazz?
CREATE TABLE table_name_1 (results VARCHAR, style VARCHAR)
SELECT general_classification FROM table_14710984_2 WHERE stage = 3
Who is the general classification leader for stage 3?
CREATE TABLE table_14710984_2 (general_classification VARCHAR, stage VARCHAR)
SELECT DISTINCT payment_method FROM customers
What are all the payment methods?
CREATE TABLE customers (payment_method VARCHAR)
SELECT canadian_championship FROM table_name_87 WHERE league = "84 (4)"
When the league is 84 (4) what is the Canadian Championship?
CREATE TABLE table_name_87 (canadian_championship VARCHAR, league VARCHAR)
SELECT COUNT(pop_density_people_km_2) FROM table_24066938_1 WHERE member_state = "Czech Republic"
How many measurements of the Czech Republic's population density are recorded in this table?
CREATE TABLE table_24066938_1 (pop_density_people_km_2 VARCHAR, member_state VARCHAR)
SELECT time_retired FROM table_name_84 WHERE points = "32"
Name the Time/Retired when the points were 32.
CREATE TABLE table_name_84 (time_retired VARCHAR, points VARCHAR)
SELECT MAX(rank_2012) FROM table_29789_3 WHERE international_tourism_expenditure_2011 = "$51.0 billion"
How many countries spent at least $51.0 billion in international tourism in 2012?
CREATE TABLE table_29789_3 (rank_2012 INTEGER, international_tourism_expenditure_2011 VARCHAR)
SELECT COUNT(week) FROM table_name_33 WHERE result = "l 31-21"
What was the total number of weeks with a result of l 31-21?
CREATE TABLE table_name_33 (week VARCHAR, result VARCHAR)
SELECT COUNT(*) FROM manufacturers WHERE headquarter = 'Tokyo' OR headquarter = 'Beijing'
Find the number of manufactures that are based in Tokyo or Beijing.
CREATE TABLE manufacturers (headquarter VARCHAR)
SELECT COUNT(opened) FROM table_name_49 WHERE stadium = "stade de la mosson" AND capacity > 32 OFFSET 939
What total number of opened has a stadium of stade de la mosson and is larger than 32,939 capacity?
CREATE TABLE table_name_49 (opened VARCHAR, stadium VARCHAR, capacity VARCHAR)
SELECT republican AS :_jon_huntsman FROM table_name_76 WHERE dates_administered = "june 19, 2008"
Who is the republican Jon Huntsman that was administered June 19, 2008?
CREATE TABLE table_name_76 (republican VARCHAR, dates_administered VARCHAR)
SELECT socket FROM table_16729930_18 WHERE frequency = "1.3 GHz"
What is the socket for microprocessors with a frequency of 1.3 ghz?
CREATE TABLE table_16729930_18 (socket VARCHAR, frequency VARCHAR)
SELECT pole_position FROM table_name_28 WHERE grand_prix = "korean grand prix"
Name the pole positon for korean grand prix
CREATE TABLE table_name_28 (pole_position VARCHAR, grand_prix VARCHAR)
SELECT score_in_the_final FROM table_22597626_17 WHERE opponents_in_the_final = "Fitzgerald Vilas"
What was the score in the final where one of the opponents in the final was fitzgerald vilas?
CREATE TABLE table_22597626_17 (score_in_the_final VARCHAR, opponents_in_the_final VARCHAR)
SELECT away_team AS score FROM table_name_62 WHERE home_team = "collingwood"
At the home game in Collingwood, how much did the away team score?
CREATE TABLE table_name_62 (away_team VARCHAR, home_team VARCHAR)
SELECT race_number FROM table_20854943_2 WHERE sail_number = "AUS 98888"
What race number had sail number AUS 98888?
CREATE TABLE table_20854943_2 (race_number VARCHAR, sail_number VARCHAR)
SELECT finishing_position FROM table_11254821_2 WHERE points_awarded__platinum_ = 15
What was the range of finishing position for 15 awarded platinum points?
CREATE TABLE table_11254821_2 (finishing_position VARCHAR, points_awarded__platinum_ VARCHAR)
SELECT year_s__won FROM table_name_25 WHERE player = "tom lehman"
What years did Tom Lehman win?
CREATE TABLE table_name_25 (year_s__won VARCHAR, player VARCHAR)
SELECT SUM(score) FROM table_name_96 WHERE opposition = "sussex" AND city = "liverpool"
What was the score when the opposition was sussex in liverpool?
CREATE TABLE table_name_96 (score INTEGER, opposition VARCHAR, city VARCHAR)
SELECT head_coach FROM table_name_34 WHERE shirt_sponsor = "karstadt quelle versicherungen"
Who is the head coach of the team, whose shirt sponsor is karstadt quelle versicherungen?
CREATE TABLE table_name_34 (head_coach VARCHAR, shirt_sponsor VARCHAR)
SELECT tournament FROM table_name_91 WHERE 2007 = "1r" AND 2009 = "1r"
Which tournament has a 1R value in 2007 and 2009?
CREATE TABLE table_name_91 (tournament VARCHAR)
SELECT date FROM table_name_6 WHERE record = "76-72"
On what date was there a record of 76-72?
CREATE TABLE table_name_6 (date VARCHAR, record VARCHAR)
SELECT state_province_county FROM addresses WHERE NOT address_id IN (SELECT employee_address_id FROM Employees)
Find the states which do not have any employee in their record.
CREATE TABLE Employees (state_province_county VARCHAR, address_id VARCHAR, employee_address_id VARCHAR); CREATE TABLE addresses (state_province_county VARCHAR, address_id VARCHAR, employee_address_id VARCHAR)
SELECT COUNT(lane) FROM table_name_15 WHERE name = "brooke bennett" AND rank < 1
Name the total number of lane for brooke bennett and rank less than 1
CREATE TABLE table_name_15 (lane VARCHAR, name VARCHAR, rank VARCHAR)
SELECT girl_group FROM table_19439814_1 WHERE studio_albums = 29
What group had 29 studio albums?
CREATE TABLE table_19439814_1 (girl_group VARCHAR, studio_albums VARCHAR)
SELECT nation FROM table_name_98 WHERE gold = 0 AND bronze > 0 AND rank = "16"
What is the nation when gold is 0, bronze is more than 0 and rank is 16?
CREATE TABLE table_name_98 (nation VARCHAR, rank VARCHAR, gold VARCHAR, bronze VARCHAR)
SELECT table FROM table_24172157_3 WHERE team = "Blackburn Rovers"
What is the table for the team Blackburn Rovers?
CREATE TABLE table_24172157_3 (table VARCHAR, team VARCHAR)
SELECT WINNING_SONG(English AS Title) FROM table_name_65 WHERE winning_song = "aku tetap milikmu"
Which winning song was sung by aku tetap milikmu?
CREATE TABLE table_name_65 (English VARCHAR, winning_song VARCHAR)
SELECT AVG(comp) FROM table_name_3 WHERE player = "gino guidugli" AND rating > 92.2
What was the Comp average, having Gino Guidugli as a player and a rating of more than 92.2?
CREATE TABLE table_name_3 (comp INTEGER, player VARCHAR, rating VARCHAR)
SELECT original_title FROM table_name_70 WHERE english_title = "a judgement in stone"
What's the Original Title of the English title A Judgement in Stone?
CREATE TABLE table_name_70 (original_title VARCHAR, english_title VARCHAR)
SELECT score FROM table_name_7 WHERE place = "t6" AND country = "united states" AND player = "fred couples"
What Score has a Place of t6, a Country of united states, and a Player of fred couples?
CREATE TABLE table_name_7 (score VARCHAR, player VARCHAR, place VARCHAR, country VARCHAR)
SELECT change__2010_to_2011_ FROM table_14752049_6 WHERE international_tourist_arrivals__2012_ = "24.1 million"
When 24.1 million is international tourist arrivals (2012) what is the change (2010 to 2011) ?
CREATE TABLE table_14752049_6 (change__2010_to_2011_ VARCHAR, international_tourist_arrivals__2012_ VARCHAR)
SELECT record FROM table_name_91 WHERE team = "minnesota"
Can you tell me the Record that has the Team of minnesota?
CREATE TABLE table_name_91 (record VARCHAR, team VARCHAR)
SELECT COUNT(name) FROM table_25762852_1 WHERE runs = "118"
How many resorts have 118 runs?
CREATE TABLE table_25762852_1 (name VARCHAR, runs VARCHAR)
SELECT general_classification FROM table_2267345_2 WHERE young_rider_classification = "Salvatore Commesso" AND winner = "Erik Dekker"
Who was the general classification leader when the young rider classification leader was Salvatore Commesso and the winner was Erik Dekker?
CREATE TABLE table_2267345_2 (general_classification VARCHAR, young_rider_classification VARCHAR, winner VARCHAR)
SELECT season FROM table_name_70 WHERE against = "did not qualify for uefa competitions"
Which season did not qualify for UEFA competitions?
CREATE TABLE table_name_70 (season VARCHAR, against VARCHAR)
SELECT 2006 FROM table_name_98 WHERE 2007 = "a"
Which 2006 has a 2007 of A?
CREATE TABLE table_name_98 (Id VARCHAR)
SELECT COUNT(byes) FROM table_name_31 WHERE losses > 0 AND against = 1526
What is the total number of byes with more than 0 losses and 1526 against?
CREATE TABLE table_name_31 (byes VARCHAR, losses VARCHAR, against VARCHAR)
SELECT nationality FROM table_23963781_1 WHERE minutes = 0 AND position = "MF" AND athletica_career = "2009"
What is the nationality associated with 0 minutes, position of MF, and an Athletica career of 2009?
CREATE TABLE table_23963781_1 (nationality VARCHAR, athletica_career VARCHAR, minutes VARCHAR, position VARCHAR)
SELECT c__nf_km_ FROM table_261642_3 WHERE l__mh_km_ = "0.6099"
what is the c (nf/km) when the l (mh/km) is 0.6099?
CREATE TABLE table_261642_3 (c__nf_km_ VARCHAR, l__mh_km_ VARCHAR)
SELECT gross FROM table_name_25 WHERE studio = "mgm"
Which Gross has a Studio of mgm?
CREATE TABLE table_name_25 (gross VARCHAR, studio VARCHAR)
SELECT opponent FROM table_name_54 WHERE event = "gcm – d.o.g. 4"
Who was the opponent at GCM – D.O.G. 4?
CREATE TABLE table_name_54 (opponent VARCHAR, event VARCHAR)
SELECT country FROM table_name_30 WHERE date = "october 24, 2008"
What is the country when the date shows October 24, 2008?
CREATE TABLE table_name_30 (country VARCHAR, date VARCHAR)
SELECT home_team AS score FROM table_16388478_2 WHERE home_team = "Carlton"
What were the home team scores when carlton was the home team?
CREATE TABLE table_16388478_2 (home_team VARCHAR)
SELECT total_matches FROM table_name_20 WHERE year = "2003"
How many Total matches happened in 2003?
CREATE TABLE table_name_20 (total_matches VARCHAR, year VARCHAR)
SELECT MIN(in_service) FROM table_name_71 WHERE vessel = "xavery czernicki class"
What is the lowest listed In service for a vessel of xavery czernicki class?
CREATE TABLE table_name_71 (in_service INTEGER, vessel VARCHAR)
SELECT AVG(snatch) FROM table_name_50 WHERE clean_ & _jerk = "145.0" AND bodyweight > 76.22
What is the snatch for the Clean & jerk of 145.0, and a Bodyweight larger than 76.22?
CREATE TABLE table_name_50 (snatch INTEGER, bodyweight VARCHAR, clean_ VARCHAR, _jerk VARCHAR)
SELECT COUNT(second_member) FROM table_15451122_2 WHERE first_member = "John Rudhale"
How many different second members were there when John rudhale was first member?
CREATE TABLE table_15451122_2 (second_member VARCHAR, first_member VARCHAR)
SELECT COUNT(language_of_films) FROM table_2461720_1 WHERE theatre_name = "Méga-Plex Taschereau IMAX"
Name the total number of language of films for méga-plex taschereau imax
CREATE TABLE table_2461720_1 (language_of_films VARCHAR, theatre_name VARCHAR)
SELECT country FROM table_name_96 WHERE to_par = "e"
Which Country has a To par of e?
CREATE TABLE table_name_96 (country VARCHAR, to_par VARCHAR)
SELECT country FROM table_name_3 WHERE money___$__ < 188 AND score = 74 - 76 - 73 - 75 = 298
What county has less than $188 and a score of 74-76-73-75=298?
CREATE TABLE table_name_3 (country VARCHAR, money___$__ VARCHAR, score VARCHAR)
SELECT character FROM table_name_50 WHERE actor_actress = "damien richardson"
What character did actor Damien Richardson play?
CREATE TABLE table_name_50 (character VARCHAR, actor_actress VARCHAR)
SELECT major, COUNT(*) FROM Student GROUP BY major
Show all majors and corresponding number of students.
CREATE TABLE Student (major VARCHAR)
SELECT active_pixels FROM table_name_96 WHERE model = "c-most"
What are the active pixels of the c-most model camera?
CREATE TABLE table_name_96 (active_pixels VARCHAR, model VARCHAR)
SELECT record FROM table_22815259_1 WHERE opponent = "Arizona"
Name the record for arizona
CREATE TABLE table_22815259_1 (record VARCHAR, opponent VARCHAR)
SELECT money___£__ FROM table_name_54 WHERE score = 72 - 70 - 71 - 72 = 285
How much money does the player with a 72-70-71-72=285 score have?
CREATE TABLE table_name_54 (money___£__ VARCHAR, score VARCHAR)
SELECT on_demand FROM table_name_24 WHERE free_or_pay = "free" AND provider = "freesat"
Which On demandhas a Free or pay of free and a Provider of freesat?
CREATE TABLE table_name_24 (on_demand VARCHAR, free_or_pay VARCHAR, provider VARCHAR)
SELECT time_retired FROM table_name_65 WHERE laps < 66 AND grid < 10 AND driver = "heinz-harald frentzen"
What is the time of retirement with Laps smaller than 66, a grid less than 10, and a Driver of heinz-harald frentzen?
CREATE TABLE table_name_65 (time_retired VARCHAR, driver VARCHAR, laps VARCHAR, grid VARCHAR)
SELECT number_of_decimal_digits FROM table_name_26 WHERE total_bits > 32 AND exponent < 15
What's the number of decimal digits when the total bits is more than 32 and the exponent is less than 15?
CREATE TABLE table_name_26 (number_of_decimal_digits VARCHAR, total_bits VARCHAR, exponent VARCHAR)
SELECT description FROM table_14465871_1 WHERE powershell__alias_ = "cpi, copy, cp"
If Powershell (alias) is cpi, copy, cp, what are all corresponding descriptions.
CREATE TABLE table_14465871_1 (description VARCHAR, powershell__alias_ VARCHAR)
SELECT course FROM table_name_21 WHERE type = "flat stage" AND date = "4 september"
Which course has a flat stage on 4 September?
CREATE TABLE table_name_21 (course VARCHAR, type VARCHAR, date VARCHAR)
SELECT pos FROM table_name_18 WHERE date_to = "30 june 2009" AND name = "eddie johnson"
What is Pos., when Date To is "30 June 2009", and when Name is "Eddie Johnson"?
CREATE TABLE table_name_18 (pos VARCHAR, date_to VARCHAR, name VARCHAR)