answer
stringlengths
6
3.91k
question
stringlengths
7
766
context
stringlengths
27
7.14k
SELECT purpose FROM table_name_71 WHERE band = "am" AND callsign = "6wh"
Band of am, and a Callsign of 6wh has what purpose?
CREATE TABLE table_name_71 (purpose VARCHAR, band VARCHAR, callsign VARCHAR)
SELECT "Home team score" FROM table_52319 WHERE "Home team" = 'geelong'
What is the score of the Home team of geelong?
CREATE TABLE table_52319 ( "Home team" text, "Home team score" text, "Away team" text, "Away team score" text, "Venue" text, "Crowd" real, "Date" text )
SELECT sat_28_aug FROM table_26986076_1 WHERE wed_25_aug = "20' 09.25 112.324mph"
If the time on Wed aug 25 was 20' 09.25 112.324mph, what was the time on sat Aug 28?
CREATE TABLE table_26986076_1 (sat_28_aug VARCHAR, wed_25_aug VARCHAR)
SELECT callsign FROM table_name_99 WHERE frequency = "0 864"
Frequency of 0 864 has what callsign?
CREATE TABLE table_name_99 (callsign VARCHAR, frequency VARCHAR)
SELECT number FROM table_name_32 WHERE season = "2002-2003"
What number has 2002-2003 as the season?
CREATE TABLE table_name_32 ( number VARCHAR, season VARCHAR )
SELECT COUNT(rank) FROM table_26986076_2 WHERE tues_24_aug = "19' 19.83 117.110mph"
How many times was tues 24 aug 19' 19.83 117.110mph?
CREATE TABLE table_26986076_2 (rank VARCHAR, tues_24_aug VARCHAR)
SELECT club FROM table_name_53 WHERE round = 1 AND home = "0-2"
What club has a home score of 0-2 in Round 1?
CREATE TABLE table_name_53 (club VARCHAR, round VARCHAR, home VARCHAR)
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE diagnoses.short_title = "Routine circumcision" AND prescriptions.drug_type = "ADDITIVE"
give me the number of patients whose diagnoses short title is routine circumcision and drug type is additive?
CREATE TABLE procedures ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text ) CREATE TABLE demographic ( subject_id text, hadm_id text, name text, marital_status text, age text, dob text, gender text, language text, religion text, admission_type text, days_stay text, insurance text, ethnicity text, expire_flag text, admission_location text, discharge_location text, diagnosis text, dod text, dob_year text, dod_year text, admittime text, dischtime text, admityear text ) CREATE TABLE diagnoses ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text ) CREATE TABLE prescriptions ( subject_id text, hadm_id text, icustay_id text, drug_type text, drug text, formulary_drug_cd text, route text, drug_dose text ) CREATE TABLE lab ( subject_id text, hadm_id text, itemid text, charttime text, flag text, value_unit text, label text, fluid text )
SELECT COUNT(sat_29_aug) FROM table_26986076_2 WHERE fri_27_aug = "19' 38.87 115.219mph"
how many time is fri 27 aug 19' 38.87 115.219mph?
CREATE TABLE table_26986076_2 (sat_29_aug VARCHAR, fri_27_aug VARCHAR)
SELECT away FROM table_name_97 WHERE round < 2 AND club = "nk rijeka"
What is NK Rijeka's away score in Round 2?
CREATE TABLE table_name_97 (away VARCHAR, round VARCHAR, club VARCHAR)
SELECT "First party" FROM table_59996 WHERE "Second member" = 'hon. rowland hill' AND "Election" = '1857'
What is the first party with second member Hon. Rowland Hill, in the 1857 election?
CREATE TABLE table_59996 ( "Election" text, "First member" text, "First party" text, "Second member" text, "Second party" text )
SELECT wed_25_aug FROM table_26986076_2 WHERE mon_23_aug = "26' 57.82 89.957mph"
what is wed 25 aug when mon 23 aug is 26' 57.82 89.957mph?
CREATE TABLE table_26986076_2 (wed_25_aug VARCHAR, mon_23_aug VARCHAR)
SELECT away FROM table_name_75 WHERE club = "nk rijeka"
What is NK Rijeka's away score?
CREATE TABLE table_name_75 (away VARCHAR, club VARCHAR)
SELECT interview FROM table_12094300_1 WHERE preliminaries = "8.400"
What is the interview score when the preliminaries score is 8.400?
CREATE TABLE table_12094300_1 ( interview VARCHAR, preliminaries VARCHAR )
SELECT thurs_26_aug FROM table_26986076_2 WHERE wed_25_aug = "19' 59.98 113.192mph"
What is thurs 26 aug when wed 25 aug is 19' 59.98 113.192mph?
CREATE TABLE table_26986076_2 (thurs_26_aug VARCHAR, wed_25_aug VARCHAR)
SELECT date FROM table_name_66 WHERE record = "28-41"
When did the Indians play a game with a record of 28-41?
CREATE TABLE table_name_66 (date VARCHAR, record VARCHAR)
SELECT COUNT("Height") FROM table_25061 WHERE "Home Town" = 'Lagos, Nigeria'
How many height entries are there for players from lagos, nigeria?
CREATE TABLE table_25061 ( "Name" text, "#" real, "Position" text, "Height" text, "Weight" real, "Year" text, "Home Town" text, "High School" text )
SELECT mon_23_aug FROM table_26986076_2 WHERE fri_27_aug = "18' 59.25 119.226mph"
what is mon 23 aug when fri 27 aug is 18' 59.25 119.226mph?
CREATE TABLE table_26986076_2 (mon_23_aug VARCHAR, fri_27_aug VARCHAR)
SELECT rider FROM table_name_8 WHERE rank < 5 AND time = "31’ 03.093"
Rank smaller than 5, and a Time of 31’ 03.093 is what rider?
CREATE TABLE table_name_8 (rider VARCHAR, rank VARCHAR, time VARCHAR)
WITH USER_BY_TAG AS (SELECT ROW_NUMBER() OVER (ORDER BY COUNT(*) DESC) AS Rank, u.Id AS "user_link", COUNT(*) AS UpVotes FROM Tags AS t INNER JOIN PostTags AS pt ON pt.TagId = t.Id INNER JOIN Posts AS p ON p.ParentId = pt.PostId INNER JOIN Votes AS v ON v.PostId = p.Id AND VoteTypeId = 2 INNER JOIN Users AS u ON u.Id = p.OwnerUserId WHERE LOWER(Location) LIKE '%tehran%' AND TagName = 'go' OR TagName = 'golang' GROUP BY u.Id, TagName) SELECT * FROM USER_BY_TAG ORDER BY UpVotes DESC
TOP golang users in Denver.
CREATE TABLE ReviewTasks ( Id number, ReviewTaskTypeId number, CreationDate time, DeletionDate time, ReviewTaskStateId number, PostId number, SuggestedEditId number, CompletedByReviewTaskId number ) CREATE TABLE VoteTypes ( Id number, Name text ) CREATE TABLE PostLinks ( Id number, CreationDate time, PostId number, RelatedPostId number, LinkTypeId number ) CREATE TABLE PostTypes ( Id number, Name text ) CREATE TABLE CloseAsOffTopicReasonTypes ( Id number, IsUniversal boolean, InputTitle text, MarkdownInputGuidance text, MarkdownPostOwnerGuidance text, MarkdownPrivilegedUserGuidance text, MarkdownConcensusDescription text, CreationDate time, CreationModeratorId number, ApprovalDate time, ApprovalModeratorId number, DeactivationDate time, DeactivationModeratorId number ) CREATE TABLE PostNoticeTypes ( Id number, ClassId number, Name text, Body text, IsHidden boolean, Predefined boolean, PostNoticeDurationId number ) CREATE TABLE Tags ( Id number, TagName text, Count number, ExcerptPostId number, WikiPostId number ) CREATE TABLE ReviewTaskTypes ( Id number, Name text, Description text ) CREATE TABLE ReviewTaskStates ( Id number, Name text, Description text ) CREATE TABLE Comments ( Id number, PostId number, Score number, Text text, CreationDate time, UserDisplayName text, UserId number, ContentLicense text ) CREATE TABLE PendingFlags ( Id number, FlagTypeId number, PostId number, CreationDate time, CloseReasonTypeId number, CloseAsOffTopicReasonTypeId number, DuplicateOfQuestionId number, BelongsOnBaseHostAddress text ) CREATE TABLE ReviewTaskResults ( Id number, ReviewTaskId number, ReviewTaskResultTypeId number, CreationDate time, RejectionReasonId number, Comment text ) CREATE TABLE Badges ( Id number, UserId number, Name text, Date time, Class number, TagBased boolean ) CREATE TABLE PostNotices ( Id number, PostId number, PostNoticeTypeId number, CreationDate time, DeletionDate time, ExpiryDate time, Body text, OwnerUserId number, DeletionUserId number ) CREATE TABLE PostsWithDeleted ( Id number, PostTypeId number, AcceptedAnswerId number, ParentId number, CreationDate time, DeletionDate time, Score number, ViewCount number, Body text, OwnerUserId number, OwnerDisplayName text, LastEditorUserId number, LastEditorDisplayName text, LastEditDate time, LastActivityDate time, Title text, Tags text, AnswerCount number, CommentCount number, FavoriteCount number, ClosedDate time, CommunityOwnedDate time, ContentLicense text ) CREATE TABLE SuggestedEditVotes ( Id number, SuggestedEditId number, UserId number, VoteTypeId number, CreationDate time, TargetUserId number, TargetRepChange number ) CREATE TABLE Users ( Id number, Reputation number, CreationDate time, DisplayName text, LastAccessDate time, WebsiteUrl text, Location text, AboutMe text, Views number, UpVotes number, DownVotes number, ProfileImageUrl text, EmailHash text, AccountId number ) CREATE TABLE PostFeedback ( Id number, PostId number, IsAnonymous boolean, VoteTypeId number, CreationDate time ) CREATE TABLE PostTags ( PostId number, TagId number ) CREATE TABLE CloseReasonTypes ( Id number, Name text, Description text ) CREATE TABLE Posts ( Id number, PostTypeId number, AcceptedAnswerId number, ParentId number, CreationDate time, DeletionDate time, Score number, ViewCount number, Body text, OwnerUserId number, OwnerDisplayName text, LastEditorUserId number, LastEditorDisplayName text, LastEditDate time, LastActivityDate time, Title text, Tags text, AnswerCount number, CommentCount number, FavoriteCount number, ClosedDate time, CommunityOwnedDate time, ContentLicense text ) CREATE TABLE PostHistoryTypes ( Id number, Name text ) CREATE TABLE ReviewRejectionReasons ( Id number, Name text, Description text, PostTypeId number ) CREATE TABLE TagSynonyms ( Id number, SourceTagName text, TargetTagName text, CreationDate time, OwnerUserId number, AutoRenameCount number, LastAutoRename time, Score number, ApprovedByUserId number, ApprovalDate time ) CREATE TABLE PostHistory ( Id number, PostHistoryTypeId number, PostId number, RevisionGUID other, CreationDate time, UserId number, UserDisplayName text, Comment text, Text text, ContentLicense text ) CREATE TABLE FlagTypes ( Id number, Name text, Description text ) CREATE TABLE SuggestedEdits ( Id number, PostId number, CreationDate time, ApprovalDate time, RejectionDate time, OwnerUserId number, Comment text, Text text, Title text, Tags text, RevisionGUID other ) CREATE TABLE ReviewTaskResultTypes ( Id number, Name text, Description text ) CREATE TABLE Votes ( Id number, PostId number, VoteTypeId number, UserId number, CreationDate time, BountyAmount number )
SELECT sat_21_aug FROM table_26986076_5 WHERE rank = 8
When 8 is the rank what is the Saturday August 21st?
CREATE TABLE table_26986076_5 (sat_21_aug VARCHAR, rank VARCHAR)
SELECT time FROM table_name_3 WHERE team = "honda 250cc" AND rank > 2 AND rider = "chris palmer"
Team of honda 250cc, and a Rank larger than 2, and a Rider of chris palmer is what time?
CREATE TABLE table_name_3 (time VARCHAR, rider VARCHAR, team VARCHAR, rank VARCHAR)
SELECT date FROM table_name_10 WHERE home_team = "hawthorn"
On what date is Hawthorn the home team?
CREATE TABLE table_name_10 ( date VARCHAR, home_team VARCHAR )
SELECT tues_24_aug FROM table_26986076_5 WHERE fri_27_aug = "20' 58.50 107.929mph"
When 20' 58.50 107.929mph is Friday August 27th What is Tuesday 24th August?
CREATE TABLE table_26986076_5 (tues_24_aug VARCHAR, fri_27_aug VARCHAR)
SELECT team FROM table_name_87 WHERE rank > 8 AND rider = "chris barrett"
Rank larger than 8, and a Rider of chris barrett is what team?
CREATE TABLE table_name_87 (team VARCHAR, rank VARCHAR, rider VARCHAR)
SELECT MIN("Lowest") FROM table_16519 WHERE "Stadium" = 'East End Park'
What is the lowest attendance that East End Park has ever had?
CREATE TABLE table_16519 ( "Team" text, "Stadium" text, "Capacity" real, "Highest" real, "Lowest" real, "Average" real )
SELECT mon_23_aug FROM table_26986076_5 WHERE tues_24_aug = "21' 18.87 106.209mph"
When 21' 18.87 106.209mph is Tuesday August 24th what is Monday August 23rd?
CREATE TABLE table_26986076_5 (mon_23_aug VARCHAR, tues_24_aug VARCHAR)
SELECT MIN(rank) FROM table_name_74 WHERE team = "honda 250cc" AND time = "31’ 03.093"
Team of honda 250cc, and a Time of 31’ 03.093 has what lowest rank?
CREATE TABLE table_name_74 (rank INTEGER, team VARCHAR, time VARCHAR)
SELECT COUNT("Date") FROM table_20730 WHERE "Away team score" = '11.8 (74)'
How many days was the away team's score 11.8 (74)?
CREATE TABLE table_20730 ( "Home team" text, "Home team score" text, "Away team" text, "Away team score" text, "Ground" text, "Crowd" real, "Date" text, "Time" text )
SELECT sat_29_aug FROM table_26986076_5 WHERE tues_24_aug = "21' 10.25 106.930mph"
When 21' 10.25 106.930mph is Tuesday August 24th what is Saturday August 29th?
CREATE TABLE table_26986076_5 (sat_29_aug VARCHAR, tues_24_aug VARCHAR)
SELECT team FROM table_name_53 WHERE rank > 5 AND rider = "paul shoesmith"
Rank larger than 5, and a Rider of paul shoesmith belongs to what team?
CREATE TABLE table_name_53 (team VARCHAR, rank VARCHAR, rider VARCHAR)
SELECT MAX(rank) FROM table_name_60 WHERE player = "jim colbert"
What's jim colbert's highest rank?
CREATE TABLE table_name_60 ( rank INTEGER, player VARCHAR )
SELECT fri_27_aug FROM table_26986076_5 WHERE wed_25_aug = "21' 05.83 107.304mph"
When 21' 05.83 107.304mph is Wednesday August 25th what is Friday August 27th?
CREATE TABLE table_26986076_5 (fri_27_aug VARCHAR, wed_25_aug VARCHAR)
SELECT SUM(total_matches) FROM table_name_61 WHERE year = "career" AND points_won > 25
How many Total matches have a Year of career, and a Points won larger than 25?
CREATE TABLE table_name_61 (total_matches INTEGER, year VARCHAR, points_won VARCHAR)
SELECT COUNT(*), country FROM airports GROUP BY country ORDER BY COUNT(*) DESC
What is the number of airports per country, ordered from most to least?
CREATE TABLE airports ( apid number, name text, city text, country text, x number, y number, elevation number, iata text, icao text ) CREATE TABLE airlines ( alid number, name text, iata text, icao text, callsign text, country text, active text ) CREATE TABLE routes ( rid number, dst_apid number, dst_ap text, src_apid number, src_ap text, alid number, airline text, codeshare text )
SELECT mon_23_aug FROM table_26986076_5 WHERE rider = "Tom Snow 250cc Honda"
When tom snow 250cc honda is the rider what is Monday August 23rd?
CREATE TABLE table_26986076_5 (mon_23_aug VARCHAR, rider 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 partner FROM table_name_94 WHERE score_in_final = "6–1, 6–2"
Which Partner has a Score in Final of 6 1, 6 2?
CREATE TABLE table_name_94 ( partner VARCHAR, score_in_final VARCHAR )
SELECT directed_by FROM table_26982362_2 WHERE original_airdate = "October 8, 2010"
The episode with the original airdate October 8, 2010, is directed by who?
CREATE TABLE table_26982362_2 (directed_by VARCHAR, original_airdate VARCHAR)
SELECT MAX(points_won) FROM table_name_14 WHERE year = "1996"
How many points were won in 1996?
CREATE TABLE table_name_14 (points_won INTEGER, year VARCHAR)
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.language = "CAPE" AND demographic.admission_location = "PHYS REFERRAL/NORMAL DELI"
count the number of patients whose language is cape and admission location is phys referral/normal deli?
CREATE TABLE diagnoses ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text ) CREATE TABLE procedures ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text ) CREATE TABLE demographic ( subject_id text, hadm_id text, name text, marital_status text, age text, dob text, gender text, language text, religion text, admission_type text, days_stay text, insurance text, ethnicity text, expire_flag text, admission_location text, discharge_location text, diagnosis text, dod text, dob_year text, dod_year text, admittime text, dischtime text, admityear text ) CREATE TABLE lab ( subject_id text, hadm_id text, itemid text, charttime text, flag text, value_unit text, label text, fluid text ) CREATE TABLE prescriptions ( subject_id text, hadm_id text, icustay_id text, drug_type text, drug text, formulary_drug_cd text, route text, drug_dose text )
SELECT directed_by FROM table_26982362_2 WHERE production_code = "693-004"
Who directed the episode with production code 693-004?
CREATE TABLE table_26982362_2 (directed_by VARCHAR, production_code VARCHAR)
SELECT MAX(total_matches) FROM table_name_74 WHERE points__percentage = "70%"
Which Total matches is the highest one that has Points % of 70%?
CREATE TABLE table_name_74 (total_matches INTEGER, points__percentage VARCHAR)
SELECT AVG("Gold") FROM table_64018 WHERE "Bronze" = '1' AND "Total" > '2' AND "Silver" < '3'
What is the average number of golds for teams with 1 bronze, less than 3 silver, and a total over 2?
CREATE TABLE table_64018 ( "Rank" text, "Nation" text, "Gold" real, "Silver" real, "Bronze" real, "Total" real )
SELECT COUNT(original_airdate) FROM table_26982362_2 WHERE production_code = "693-002"
The episode with production code 693-002, has how many original airdates?
CREATE TABLE table_26982362_2 (original_airdate VARCHAR, production_code VARCHAR)
SELECT MIN(total_matches) FROM table_name_33 WHERE total_w_l_h = "1-2-0"
Which Total matches is the lowest one that has a Total W-L-H of 1-2-0?
CREATE TABLE table_name_33 (total_matches INTEGER, total_w_l_h VARCHAR)
SELECT "GA Date" FROM table_16341 WHERE "Processor frequency" = '1.0, 1.2, 1.4GHz'
What ga date do the models with 1.0, 1.2, 1.4ghz processor frequencies have?
CREATE TABLE table_16341 ( "Model" text, "RU" real, "Max processors" text, "Processor frequency" text, "Max memory" text, "Max disk capacity" text, "GA Date" text )
SELECT title FROM table_26982362_2 WHERE original_airdate = "April 23, 2010"
What is the title of the episode whose original airdate is April 23, 2010?
CREATE TABLE table_26982362_2 (title VARCHAR, original_airdate VARCHAR)
SELECT winner FROM table_name_75 WHERE stage = 3
what is the winner of stage 3
CREATE TABLE table_name_75 (winner VARCHAR, stage VARCHAR)
SELECT "Result" FROM table_29046 WHERE "Broadcast" = 'Big East Network'
What was the result in the game broadcast on the Big East Network?
CREATE TABLE table_29046 ( "Date" text, "Time" text, "Visiting team" text, "Home team" text, "Site" text, "Broadcast" text, "Result" text, "Attendance" real )
SELECT rider FROM table_26986076_7 WHERE tues_24_aug = "22' 09.44 93.840mph"
Who had the time of 22' 09.44 93.840mph on Tuesday August 24th?
CREATE TABLE table_26986076_7 (rider VARCHAR, tues_24_aug VARCHAR)
SELECT total FROM table_name_5 WHERE silver = "0" AND competitors = "31"
What was the Total the Year Yugoslavia had 0 Silver medals and 31 Competitors?
CREATE TABLE table_name_5 (total VARCHAR, silver VARCHAR, competitors VARCHAR)
SELECT "Tournament" FROM table_38173 WHERE "2009" = '1r'
Which tournament had a 2009 result of 1R?
CREATE TABLE table_38173 ( "Tournament" text, "2009" text, "2010" text, "2011" text, "2012" text )
SELECT l3_cache__mb_ FROM table_269920_16 WHERE speed__ghz_ = "2.93"
What is the L3 cache for the processor having a speed of 2.93 GHz?
CREATE TABLE table_269920_16 (l3_cache__mb_ VARCHAR, speed__ghz_ VARCHAR)
SELECT bronze FROM table_name_74 WHERE total = "0" AND competitors = "6"
What is the Bronze in the year there was a Total of 0 medals and 6 Competitors?
CREATE TABLE table_name_74 (bronze VARCHAR, total VARCHAR, competitors VARCHAR)
SELECT "year" FROM table_203_521 WHERE "playoffs" = 'did not qualify'
what is the only year that did not qualify appears under the playoffs column ?
CREATE TABLE table_203_521 ( id number, "year" number, "division" number, "league" text, "regular season" text, "playoffs" text, "open cup" text )
SELECT COUNT(cores) FROM table_269920_16 WHERE speed__ghz_ = "2.53"
How many entries have a speed of exactly 2.53 GHz?
CREATE TABLE table_269920_16 (cores VARCHAR, speed__ghz_ VARCHAR)
SELECT year FROM table_name_78 WHERE total = "0" AND competitors = "4"
In what Year did Yugoslavia have 4 Competitors with 0 medals Total?
CREATE TABLE table_name_78 (year VARCHAR, total VARCHAR, competitors VARCHAR)
SELECT "Competition" FROM table_7779 WHERE "Year" > '2009' AND "Notes" = 'team'
What competition took place in a year later than 2009 with team notes?
CREATE TABLE table_7779 ( "Year" real, "Competition" text, "Venue" text, "Position" text, "Notes" text )
SELECT speed__ghz_ FROM table_269920_16 WHERE model = "W3540"
What is the speed of the model whose number is W3540?
CREATE TABLE table_269920_16 (speed__ghz_ VARCHAR, model VARCHAR)
SELECT gold FROM table_name_14 WHERE silver = "1"
In the Year Yugoslavia won 1 Silver, how many Gold medals did they win?
CREATE TABLE table_name_14 (gold VARCHAR, silver VARCHAR)
SELECT SUM(race) FROM table_name_64 WHERE podium = 4 AND pole = 5 AND flap > 3
How many races had 4 podiums, 5 poles and more than 3 Flaps?
CREATE TABLE table_name_64 ( race INTEGER, flap VARCHAR, podium VARCHAR, pole VARCHAR )
SELECT wed_25_aug FROM table_26986076_6 WHERE fri_27_aug = "22' 23.97 101.065mph"
What was the Weds 25 Aug time for the driver whose Aug 27 time was 22' 23.97 101.065mph?
CREATE TABLE table_26986076_6 (wed_25_aug VARCHAR, fri_27_aug VARCHAR)
SELECT total FROM table_name_94 WHERE gold = "0" AND bronze = "0" AND silver = "0" AND sports = "1"
What is the Total medals the Year Yugoslavia had 1 Sport and won 0 Gold, Bronze or Silver?
CREATE TABLE table_name_94 (total VARCHAR, sports VARCHAR, silver VARCHAR, gold VARCHAR, bronze VARCHAR)
SELECT MIN("Shutouts") FROM table_74416
What is the lowest overall amount of shutouts?
CREATE TABLE table_74416 ( "Name" text, "Country" text, "Years" text, "Games" real, "Minutes" real, "Conceded" real, "Shutouts" real, "Int. caps" real )
SELECT sat_21_aug FROM table_26986076_6 WHERE thurs_26_aug = "20' 56.01 108.143mph"
What was the Sat 21 Aug time for the driver whose Thurs 26 Aug time was 20' 56.01 108.143mph?
CREATE TABLE table_26986076_6 (sat_21_aug VARCHAR, thurs_26_aug VARCHAR)
SELECT SUM(total) FROM table_name_8 WHERE rank = "5" AND silver > 0
Rank of 5, and a Silver larger than 0 had what sum of total?
CREATE TABLE table_name_8 (total INTEGER, rank VARCHAR, silver VARCHAR)
SELECT previous_conference FROM table_name_41 WHERE school = "portage"
The school of Portage was in what conference previous?
CREATE TABLE table_name_41 ( previous_conference VARCHAR, school VARCHAR )
SELECT sat_21_aug FROM table_26986076_6 WHERE tues_24_aug = "20' 38.40 109.680mph"
What was the Sat 21 Aug time for the rider whose Tues 24 Aug time was 20' 38.40 109.680mph?
CREATE TABLE table_26986076_6 (sat_21_aug VARCHAR, tues_24_aug VARCHAR)
SELECT COUNT(silver) FROM table_name_48 WHERE gold < 2 AND rank = "4" AND nation = "hungary (hun)" AND bronze < 1
Gold smaller than 2, and a Rank of 4, and a Nation of hungary (hun), and a Bronze smaller than 1 had what total number of silver?
CREATE TABLE table_name_48 (silver VARCHAR, bronze VARCHAR, nation VARCHAR, gold VARCHAR, rank VARCHAR)
SELECT MAX(channel) FROM table_name_12 WHERE aspect = "4:3" AND psip_short_name = "ibc-tv"
Name the highest Channel with an Aspect of 4:3, and a PSIP Short Name of ibc-tv?
CREATE TABLE table_name_12 ( channel INTEGER, aspect VARCHAR, psip_short_name VARCHAR )
SELECT area__km²_ FROM table_269888_1 WHERE population__2010_ = 53542
Name the area for population of 53542
CREATE TABLE table_269888_1 (area__km²_ VARCHAR, population__2010_ VARCHAR)
SELECT AVG(silver) FROM table_name_35 WHERE total < 7 AND bronze > 1
Total smaller than 7, and a Bronze larger than 1 is what amount of average silver?
CREATE TABLE table_name_35 (silver INTEGER, total VARCHAR, bronze VARCHAR)
SELECT "Year" FROM table_65125 WHERE "Player" = 'coenraad breytenbach'
What year did Coenraad Breytenbach have their Int'l Debut?
CREATE TABLE table_65125 ( "Player" text, "Int'l Debut" text, "Year" text, "Cross Code Debut" text, "Date" text, "Position" text )
SELECT no_of_s_barangay FROM table_269888_1 WHERE pop_density__per_km²_ = "205.4"
Name the number of barangay for 205.4 density
CREATE TABLE table_269888_1 (no_of_s_barangay VARCHAR, pop_density__per_km²_ VARCHAR)
SELECT nation FROM table_name_66 WHERE bronze < 5 AND silver > 0
Bronze smaller than 5, and a Silver larger than 0 is which nation?
CREATE TABLE table_name_66 (nation VARCHAR, bronze VARCHAR, silver VARCHAR)
SELECT p.Id AS "post_link", LENGTH(p.Body) AS "length", p.Score AS "score" FROM Users AS u JOIN Posts AS p ON p.OwnerUserId = u.Id WHERE u.Id = '##UserId##' ORDER BY 'score', 'length' DESC
Where did X rant the most?.
CREATE TABLE PostHistoryTypes ( Id number, Name text ) CREATE TABLE Votes ( Id number, PostId number, VoteTypeId number, UserId number, CreationDate time, BountyAmount number ) CREATE TABLE ReviewTaskTypes ( Id number, Name text, Description text ) CREATE TABLE PostsWithDeleted ( Id number, PostTypeId number, AcceptedAnswerId number, ParentId number, CreationDate time, DeletionDate time, Score number, ViewCount number, Body text, OwnerUserId number, OwnerDisplayName text, LastEditorUserId number, LastEditorDisplayName text, LastEditDate time, LastActivityDate time, Title text, Tags text, AnswerCount number, CommentCount number, FavoriteCount number, ClosedDate time, CommunityOwnedDate time, ContentLicense text ) CREATE TABLE PostNoticeTypes ( Id number, ClassId number, Name text, Body text, IsHidden boolean, Predefined boolean, PostNoticeDurationId number ) CREATE TABLE VoteTypes ( Id number, Name text ) CREATE TABLE ReviewRejectionReasons ( Id number, Name text, Description text, PostTypeId number ) CREATE TABLE FlagTypes ( Id number, Name text, Description text ) CREATE TABLE Posts ( Id number, PostTypeId number, AcceptedAnswerId number, ParentId number, CreationDate time, DeletionDate time, Score number, ViewCount number, Body text, OwnerUserId number, OwnerDisplayName text, LastEditorUserId number, LastEditorDisplayName text, LastEditDate time, LastActivityDate time, Title text, Tags text, AnswerCount number, CommentCount number, FavoriteCount number, ClosedDate time, CommunityOwnedDate time, ContentLicense text ) CREATE TABLE ReviewTaskResultTypes ( Id number, Name text, Description text ) CREATE TABLE SuggestedEdits ( Id number, PostId number, CreationDate time, ApprovalDate time, RejectionDate time, OwnerUserId number, Comment text, Text text, Title text, Tags text, RevisionGUID other ) CREATE TABLE Tags ( Id number, TagName text, Count number, ExcerptPostId number, WikiPostId number ) CREATE TABLE PostLinks ( Id number, CreationDate time, PostId number, RelatedPostId number, LinkTypeId number ) CREATE TABLE PostTypes ( Id number, Name text ) CREATE TABLE CloseReasonTypes ( Id number, Name text, Description text ) CREATE TABLE ReviewTaskStates ( Id number, Name text, Description text ) CREATE TABLE CloseAsOffTopicReasonTypes ( Id number, IsUniversal boolean, InputTitle text, MarkdownInputGuidance text, MarkdownPostOwnerGuidance text, MarkdownPrivilegedUserGuidance text, MarkdownConcensusDescription text, CreationDate time, CreationModeratorId number, ApprovalDate time, ApprovalModeratorId number, DeactivationDate time, DeactivationModeratorId number ) CREATE TABLE PendingFlags ( Id number, FlagTypeId number, PostId number, CreationDate time, CloseReasonTypeId number, CloseAsOffTopicReasonTypeId number, DuplicateOfQuestionId number, BelongsOnBaseHostAddress text ) CREATE TABLE PostNotices ( Id number, PostId number, PostNoticeTypeId number, CreationDate time, DeletionDate time, ExpiryDate time, Body text, OwnerUserId number, DeletionUserId number ) CREATE TABLE Comments ( Id number, PostId number, Score number, Text text, CreationDate time, UserDisplayName text, UserId number, ContentLicense text ) CREATE TABLE PostHistory ( Id number, PostHistoryTypeId number, PostId number, RevisionGUID other, CreationDate time, UserId number, UserDisplayName text, Comment text, Text text, ContentLicense text ) CREATE TABLE Badges ( Id number, UserId number, Name text, Date time, Class number, TagBased boolean ) CREATE TABLE SuggestedEditVotes ( Id number, SuggestedEditId number, UserId number, VoteTypeId number, CreationDate time, TargetUserId number, TargetRepChange number ) CREATE TABLE Users ( Id number, Reputation number, CreationDate time, DisplayName text, LastAccessDate time, WebsiteUrl text, Location text, AboutMe text, Views number, UpVotes number, DownVotes number, ProfileImageUrl text, EmailHash text, AccountId number ) CREATE TABLE PostFeedback ( Id number, PostId number, IsAnonymous boolean, VoteTypeId number, CreationDate time ) CREATE TABLE PostTags ( PostId number, TagId number ) CREATE TABLE ReviewTaskResults ( Id number, ReviewTaskId number, ReviewTaskResultTypeId number, CreationDate time, RejectionReasonId number, Comment text ) CREATE TABLE ReviewTasks ( Id number, ReviewTaskTypeId number, CreationDate time, DeletionDate time, ReviewTaskStateId number, PostId number, SuggestedEditId number, CompletedByReviewTaskId number ) CREATE TABLE TagSynonyms ( Id number, SourceTagName text, TargetTagName text, CreationDate time, OwnerUserId number, AutoRenameCount number, LastAutoRename time, Score number, ApprovedByUserId number, ApprovalDate time )
SELECT COUNT(fsb__mhz_) FROM table_269920_3 WHERE model = "7140N"
How many different FSB are there for the 7140N model?
CREATE TABLE table_269920_3 (fsb__mhz_ VARCHAR, model VARCHAR)
SELECT player FROM table_name_70 WHERE team = "los angeles dodgers"
What player was on the Los Angeles Dodgers?
CREATE TABLE table_name_70 (player VARCHAR, team VARCHAR)
SELECT COUNT("Car #") FROM table_38292 WHERE "Driver" = 'erik darnell' AND "Pos." < '2'
How many Car numbers have a Driver of erik darnell, and a Pos smaller than 2?
CREATE TABLE table_38292 ( "Pos." real, "Car #" real, "Driver" text, "Make" text, "Team" text )
SELECT COUNT(l2_cache__mb_) FROM table_269920_3 WHERE model = "7130M"
How many different L2 cache numbers are there for the 7130M model?
CREATE TABLE table_269920_3 (l2_cache__mb_ VARCHAR, model VARCHAR)
SELECT opponent FROM table_name_36 WHERE venue = "south end grounds"
Which team did the Boston Beaneaters host at the South End Grounds?
CREATE TABLE table_name_36 (opponent VARCHAR, venue VARCHAR)
SELECT Statement_Details, COUNT(Statement_Details) FROM Accounts AS T1 JOIN Statements AS T2 ON T1.Statement_ID = T2.Statement_ID GROUP BY Statement_Details ORDER BY COUNT(Statement_Details)
Show the number of accounts for different statement details in a bar chart, and could you show y-axis in ascending order?
CREATE TABLE Accounts ( Account_ID INTEGER, Statement_ID INTEGER, Account_Details VARCHAR(255) ) CREATE TABLE Statements ( Statement_ID INTEGER, Statement_Details VARCHAR(255) ) CREATE TABLE Ref_Document_Types ( Document_Type_Code CHAR(15), Document_Type_Name VARCHAR(255), Document_Type_Description VARCHAR(255) ) CREATE TABLE Projects ( Project_ID INTEGER, Project_Details VARCHAR(255) ) CREATE TABLE Documents ( Document_ID INTEGER, Document_Type_Code CHAR(15), Project_ID INTEGER, Document_Date DATETIME, Document_Name VARCHAR(255), Document_Description VARCHAR(255), Other_Details VARCHAR(255) ) CREATE TABLE Documents_with_Expenses ( Document_ID INTEGER, Budget_Type_Code CHAR(15), Document_Details VARCHAR(255) ) CREATE TABLE Ref_Budget_Codes ( Budget_Type_Code CHAR(15), Budget_Type_Description VARCHAR(255) )
SELECT MAX(l2_cache__mb_) FROM table_269920_3
What's the maximal L3 cache for any of the models given?
CREATE TABLE table_269920_3 (l2_cache__mb_ INTEGER)
SELECT opponent FROM table_name_92 WHERE team = "milwaukee braves"
Which team opposed the Milwaukee Braves?
CREATE TABLE table_name_92 (opponent VARCHAR, team VARCHAR)
SELECT COUNT(P2.Id) AS "numquestions" FROM Posts AS P JOIN Posts AS P2 ON (P2.Id = P.ParentId) JOIN Posts AS P3 ON (P3.ParentId = P2.Id) WHERE P.Score > 1 AND P.PostTypeId = 2 AND P2.PostTypeId = 1 AND P3.PostTypeId = 2 AND P.Score > P3.Score AND P2.AcceptedAnswerId = P3.Id AND P2.CreationDate BETWEEN '2012-10-01' AND '2012-12-31' GROUP BY P2.Id
Where accepted answer does not have the highest score.
CREATE TABLE PostHistoryTypes ( Id number, Name text ) CREATE TABLE ReviewTaskResults ( Id number, ReviewTaskId number, ReviewTaskResultTypeId number, CreationDate time, RejectionReasonId number, Comment text ) CREATE TABLE Comments ( Id number, PostId number, Score number, Text text, CreationDate time, UserDisplayName text, UserId number, ContentLicense text ) CREATE TABLE Posts ( Id number, PostTypeId number, AcceptedAnswerId number, ParentId number, CreationDate time, DeletionDate time, Score number, ViewCount number, Body text, OwnerUserId number, OwnerDisplayName text, LastEditorUserId number, LastEditorDisplayName text, LastEditDate time, LastActivityDate time, Title text, Tags text, AnswerCount number, CommentCount number, FavoriteCount number, ClosedDate time, CommunityOwnedDate time, ContentLicense text ) CREATE TABLE ReviewTaskResultTypes ( Id number, Name text, Description text ) CREATE TABLE FlagTypes ( Id number, Name text, Description text ) CREATE TABLE ReviewTaskStates ( Id number, Name text, Description text ) CREATE TABLE PostNotices ( Id number, PostId number, PostNoticeTypeId number, CreationDate time, DeletionDate time, ExpiryDate time, Body text, OwnerUserId number, DeletionUserId number ) CREATE TABLE PostTypes ( Id number, Name text ) CREATE TABLE SuggestedEdits ( Id number, PostId number, CreationDate time, ApprovalDate time, RejectionDate time, OwnerUserId number, Comment text, Text text, Title text, Tags text, RevisionGUID other ) CREATE TABLE ReviewTasks ( Id number, ReviewTaskTypeId number, CreationDate time, DeletionDate time, ReviewTaskStateId number, PostId number, SuggestedEditId number, CompletedByReviewTaskId number ) CREATE TABLE PostTags ( PostId number, TagId number ) CREATE TABLE SuggestedEditVotes ( Id number, SuggestedEditId number, UserId number, VoteTypeId number, CreationDate time, TargetUserId number, TargetRepChange number ) CREATE TABLE Users ( Id number, Reputation number, CreationDate time, DisplayName text, LastAccessDate time, WebsiteUrl text, Location text, AboutMe text, Views number, UpVotes number, DownVotes number, ProfileImageUrl text, EmailHash text, AccountId number ) CREATE TABLE Tags ( Id number, TagName text, Count number, ExcerptPostId number, WikiPostId number ) CREATE TABLE Badges ( Id number, UserId number, Name text, Date time, Class number, TagBased boolean ) CREATE TABLE CloseAsOffTopicReasonTypes ( Id number, IsUniversal boolean, InputTitle text, MarkdownInputGuidance text, MarkdownPostOwnerGuidance text, MarkdownPrivilegedUserGuidance text, MarkdownConcensusDescription text, CreationDate time, CreationModeratorId number, ApprovalDate time, ApprovalModeratorId number, DeactivationDate time, DeactivationModeratorId number ) CREATE TABLE PostLinks ( Id number, CreationDate time, PostId number, RelatedPostId number, LinkTypeId number ) CREATE TABLE VoteTypes ( Id number, Name text ) CREATE TABLE PostFeedback ( Id number, PostId number, IsAnonymous boolean, VoteTypeId number, CreationDate time ) CREATE TABLE ReviewTaskTypes ( Id number, Name text, Description text ) CREATE TABLE Votes ( Id number, PostId number, VoteTypeId number, UserId number, CreationDate time, BountyAmount number ) CREATE TABLE CloseReasonTypes ( Id number, Name text, Description text ) CREATE TABLE PostNoticeTypes ( Id number, ClassId number, Name text, Body text, IsHidden boolean, Predefined boolean, PostNoticeDurationId number ) CREATE TABLE PendingFlags ( Id number, FlagTypeId number, PostId number, CreationDate time, CloseReasonTypeId number, CloseAsOffTopicReasonTypeId number, DuplicateOfQuestionId number, BelongsOnBaseHostAddress text ) CREATE TABLE ReviewRejectionReasons ( Id number, Name text, Description text, PostTypeId number ) CREATE TABLE PostHistory ( Id number, PostHistoryTypeId number, PostId number, RevisionGUID other, CreationDate time, UserId number, UserDisplayName text, Comment text, Text text, ContentLicense text ) CREATE TABLE PostsWithDeleted ( Id number, PostTypeId number, AcceptedAnswerId number, ParentId number, CreationDate time, DeletionDate time, Score number, ViewCount number, Body text, OwnerUserId number, OwnerDisplayName text, LastEditorUserId number, LastEditorDisplayName text, LastEditDate time, LastActivityDate time, Title text, Tags text, AnswerCount number, CommentCount number, FavoriteCount number, ClosedDate time, CommunityOwnedDate time, ContentLicense text ) CREATE TABLE TagSynonyms ( Id number, SourceTagName text, TargetTagName text, CreationDate time, OwnerUserId number, AutoRenameCount number, LastAutoRename time, Score number, ApprovedByUserId number, ApprovalDate time )
SELECT MIN(tdp__w_) FROM table_269920_3 WHERE model = "7130N"
What's the TDP for the 7130N model?
CREATE TABLE table_269920_3 (tdp__w_ INTEGER, model VARCHAR)
SELECT venue FROM table_name_85 WHERE player = "chuck klein"
What was the venue where Chuck Klein played?
CREATE TABLE table_name_85 (venue VARCHAR, player VARCHAR)
SELECT name FROM table_12834315_5 WHERE barrel_profile = "A2"
What models have an a2 barrel profile?
CREATE TABLE table_12834315_5 ( name VARCHAR, barrel_profile VARCHAR )
SELECT l2_cache__mb_ FROM table_269920_3 WHERE model = "7140N"
What's the L2 cache for the 7140N model?
CREATE TABLE table_269920_3 (l2_cache__mb_ VARCHAR, model VARCHAR)
SELECT venue FROM table_name_42 WHERE player = "josh hamilton"
What was the venue where Josh Hamilton played?
CREATE TABLE table_name_42 (venue VARCHAR, player VARCHAR)
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.diagnosis = "OVERDOSE" AND demographic.dod_year <= "2168.0"
Give the number of patients whose primary disease is overdose and died in or before year 2168.
CREATE TABLE demographic ( subject_id text, hadm_id text, name text, marital_status text, age text, dob text, gender text, language text, religion text, admission_type text, days_stay text, insurance text, ethnicity text, expire_flag text, admission_location text, discharge_location text, diagnosis text, dod text, dob_year text, dod_year text, admittime text, dischtime text, admityear text ) CREATE TABLE procedures ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text ) CREATE TABLE diagnoses ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text ) CREATE TABLE prescriptions ( subject_id text, hadm_id text, icustay_id text, drug_type text, drug text, formulary_drug_cd text, route text, drug_dose text ) CREATE TABLE lab ( subject_id text, hadm_id text, itemid text, charttime text, flag text, value_unit text, label text, fluid text )
SELECT COUNT(cfl_team) FROM table_26996293_4 WHERE college = "Waterloo"
what is the cfl team where college is waterloo?
CREATE TABLE table_26996293_4 (cfl_team VARCHAR, college VARCHAR)
SELECT SUM(cuts_made) FROM table_name_76 WHERE wins = 0 AND top_25 = 1 AND events > 4
How man cuts were there of players who had 0 wins but had 1 player in the top 25 with more than 4 events?
CREATE TABLE table_name_76 (cuts_made INTEGER, events VARCHAR, wins VARCHAR, top_25 VARCHAR)
SELECT "Catalogno" FROM table_36553 WHERE "Year" = '1971' AND "Remark" = '#27 us'
What catalogno was in 1971 and had a remark of #27 us?
CREATE TABLE table_36553 ( "Year" real, "Title" text, "Format" text, "Label" text, "Catalogno" text, "Remark" text )
SELECT college FROM table_26996293_1 WHERE player = "Jim Bennett"
What college did Jim Bennett attend?
CREATE TABLE table_26996293_1 (college VARCHAR, player VARCHAR)
SELECT MAX(top_25) FROM table_name_16 WHERE events > 4 AND wins = 2 AND top_10 < 6
What was the larger number of players that played in 4 events that 2 wins but were less than 6 in the top 10?
CREATE TABLE table_name_16 (top_25 INTEGER, top_10 VARCHAR, events VARCHAR, wins VARCHAR)
SELECT c.Id AS "comment_link", u.Id AS "user_link" FROM Comments AS c JOIN Users AS u ON (u.Id = UserId) WHERE LENGTH(Text) = 600
Comments that are 600 characters long.
CREATE TABLE Posts ( Id number, PostTypeId number, AcceptedAnswerId number, ParentId number, CreationDate time, DeletionDate time, Score number, ViewCount number, Body text, OwnerUserId number, OwnerDisplayName text, LastEditorUserId number, LastEditorDisplayName text, LastEditDate time, LastActivityDate time, Title text, Tags text, AnswerCount number, CommentCount number, FavoriteCount number, ClosedDate time, CommunityOwnedDate time, ContentLicense text ) CREATE TABLE ReviewTaskTypes ( Id number, Name text, Description text ) CREATE TABLE PostNotices ( Id number, PostId number, PostNoticeTypeId number, CreationDate time, DeletionDate time, ExpiryDate time, Body text, OwnerUserId number, DeletionUserId number ) CREATE TABLE ReviewTaskResults ( Id number, ReviewTaskId number, ReviewTaskResultTypeId number, CreationDate time, RejectionReasonId number, Comment text ) CREATE TABLE TagSynonyms ( Id number, SourceTagName text, TargetTagName text, CreationDate time, OwnerUserId number, AutoRenameCount number, LastAutoRename time, Score number, ApprovedByUserId number, ApprovalDate time ) CREATE TABLE PostNoticeTypes ( Id number, ClassId number, Name text, Body text, IsHidden boolean, Predefined boolean, PostNoticeDurationId number ) CREATE TABLE PendingFlags ( Id number, FlagTypeId number, PostId number, CreationDate time, CloseReasonTypeId number, CloseAsOffTopicReasonTypeId number, DuplicateOfQuestionId number, BelongsOnBaseHostAddress text ) CREATE TABLE Comments ( Id number, PostId number, Score number, Text text, CreationDate time, UserDisplayName text, UserId number, ContentLicense text ) CREATE TABLE VoteTypes ( Id number, Name text ) CREATE TABLE PostTypes ( Id number, Name text ) CREATE TABLE Votes ( Id number, PostId number, VoteTypeId number, UserId number, CreationDate time, BountyAmount number ) CREATE TABLE Tags ( Id number, TagName text, Count number, ExcerptPostId number, WikiPostId number ) CREATE TABLE PostHistoryTypes ( Id number, Name text ) CREATE TABLE FlagTypes ( Id number, Name text, Description text ) CREATE TABLE ReviewRejectionReasons ( Id number, Name text, Description text, PostTypeId number ) CREATE TABLE ReviewTaskStates ( Id number, Name text, Description text ) CREATE TABLE ReviewTasks ( Id number, ReviewTaskTypeId number, CreationDate time, DeletionDate time, ReviewTaskStateId number, PostId number, SuggestedEditId number, CompletedByReviewTaskId number ) CREATE TABLE PostLinks ( Id number, CreationDate time, PostId number, RelatedPostId number, LinkTypeId number ) CREATE TABLE SuggestedEditVotes ( Id number, SuggestedEditId number, UserId number, VoteTypeId number, CreationDate time, TargetUserId number, TargetRepChange number ) CREATE TABLE PostHistory ( Id number, PostHistoryTypeId number, PostId number, RevisionGUID other, CreationDate time, UserId number, UserDisplayName text, Comment text, Text text, ContentLicense text ) CREATE TABLE CloseAsOffTopicReasonTypes ( Id number, IsUniversal boolean, InputTitle text, MarkdownInputGuidance text, MarkdownPostOwnerGuidance text, MarkdownPrivilegedUserGuidance text, MarkdownConcensusDescription text, CreationDate time, CreationModeratorId number, ApprovalDate time, ApprovalModeratorId number, DeactivationDate time, DeactivationModeratorId number ) CREATE TABLE PostTags ( PostId number, TagId number ) CREATE TABLE PostsWithDeleted ( Id number, PostTypeId number, AcceptedAnswerId number, ParentId number, CreationDate time, DeletionDate time, Score number, ViewCount number, Body text, OwnerUserId number, OwnerDisplayName text, LastEditorUserId number, LastEditorDisplayName text, LastEditDate time, LastActivityDate time, Title text, Tags text, AnswerCount number, CommentCount number, FavoriteCount number, ClosedDate time, CommunityOwnedDate time, ContentLicense text ) CREATE TABLE SuggestedEdits ( Id number, PostId number, CreationDate time, ApprovalDate time, RejectionDate time, OwnerUserId number, Comment text, Text text, Title text, Tags text, RevisionGUID other ) CREATE TABLE Users ( Id number, Reputation number, CreationDate time, DisplayName text, LastAccessDate time, WebsiteUrl text, Location text, AboutMe text, Views number, UpVotes number, DownVotes number, ProfileImageUrl text, EmailHash text, AccountId number ) CREATE TABLE CloseReasonTypes ( Id number, Name text, Description text ) CREATE TABLE Badges ( Id number, UserId number, Name text, Date time, Class number, TagBased boolean ) CREATE TABLE PostFeedback ( Id number, PostId number, IsAnonymous boolean, VoteTypeId number, CreationDate time ) CREATE TABLE ReviewTaskResultTypes ( Id number, Name text, Description text )
SELECT cfl_team FROM table_26996293_1 WHERE player = "Barry Jamieson"
What CFL Team was Barry Jamieson a part of?
CREATE TABLE table_26996293_1 (cfl_team VARCHAR, player VARCHAR)
SELECT combination_classification FROM table_name_34 WHERE points_classification = "daniele bennati" AND team_classification = "quick step"
Which Combination classification has Points classification of daniele bennati, and a Team classification of quick step?
CREATE TABLE table_name_34 (combination_classification VARCHAR, points_classification VARCHAR, team_classification VARCHAR)