answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 489 |
|---|---|---|
SELECT january_15_16 FROM table_25216791_3 WHERE june_10_11 = "June 10, 1964" | What was the data on January 15-16 if the data recorded June 10-11 is June 10, 1964? | CREATE TABLE table_25216791_3 (january_15_16 VARCHAR, june_10_11 VARCHAR) |
SELECT Fname FROM STUDENT WHERE NOT StuID IN (SELECT StuID FROM ENROLLED_IN) | Find the first name of students not enrolled in any course. | CREATE TABLE STUDENT (Fname VARCHAR, StuID VARCHAR); CREATE TABLE ENROLLED_IN (Fname VARCHAR, StuID VARCHAR) |
SELECT artist_name FROM artist WHERE country = "UK" INTERSECT SELECT T1.artist_name FROM artist AS T1 JOIN song AS T2 ON T1.artist_name = T2.artist_name WHERE T2.languages = "english" | Return the names of singers who are from UK and released an English song. | CREATE TABLE song (artist_name VARCHAR, languages VARCHAR); CREATE TABLE artist (artist_name VARCHAR); CREATE TABLE artist (artist_name VARCHAR, country VARCHAR) |
SELECT DISTINCT Region FROM club ORDER BY Region | List the distinct region of clubs in ascending alphabetical order. | CREATE TABLE club (Region VARCHAR) |
SELECT away_team AS score FROM table_name_27 WHERE venue = "glenferrie oval" | What was the score for the away team that played at Glenferrie Oval? | CREATE TABLE table_name_27 (away_team VARCHAR, venue VARCHAR) |
SELECT MIN(game__number) FROM table_name_93 WHERE home = "detroit" | What is the first game that has a home team of Detroit? | CREATE TABLE table_name_93 (game__number INTEGER, home VARCHAR) |
SELECT MIN(interview) FROM table_name_71 WHERE swimsuit < 9.322 AND evening_gown > 9.259 AND average = 9.321 | Which smallest interview number had a swimsuit stat of less than 9.322, an evening gown score of more than 9.259, and an average number of 9.321? | CREATE TABLE table_name_71 (interview INTEGER, average VARCHAR, swimsuit VARCHAR, evening_gown VARCHAR) |
SELECT hometown FROM table_27529608_21 WHERE name_name_of_act = "PLUtonic" | What is the hometown of Plutonic? | CREATE TABLE table_27529608_21 (hometown VARCHAR, name_name_of_act VARCHAR) |
SELECT COUNT(wins) FROM table_name_66 WHERE goals_against < 30 AND goals_for > 25 AND draws > 5 | How many Wins have Goals against smaller than 30, and Goals for larger than 25, and Draws larger than 5? | CREATE TABLE table_name_66 (wins VARCHAR, draws VARCHAR, goals_against VARCHAR, goals_for VARCHAR) |
SELECT period FROM table_28606933_7 WHERE position = "Left inside linebacker" | What period(s) featured a left inside linebacker? | CREATE TABLE table_28606933_7 (period VARCHAR, position VARCHAR) |
SELECT written_by FROM table_25640730_7 WHERE uk_air_date = "February 18, 2013" | If the UK air date is February 18, 2013, who was the episode written by? | CREATE TABLE table_25640730_7 (written_by VARCHAR, uk_air_date VARCHAR) |
SELECT result FROM table_16710742_3 WHERE opponent = "New Orleans Saints" | In 1984, Did the Falcons have a win or loss against the New Orleans Saints? | CREATE TABLE table_16710742_3 (result VARCHAR, opponent VARCHAR) |
SELECT mixed_restricted FROM table_28211674_3 WHERE mixed_veteran = "Tomasz Rzeszotko" AND u21_womens = "Karina Le Fevre" | Who won the mixed restricted when Tomasz Rzeszotko won the mixed veteran and Karina Le Fevre won the U21 womens? | CREATE TABLE table_28211674_3 (mixed_restricted VARCHAR, mixed_veteran VARCHAR, u21_womens VARCHAR) |
SELECT AVG(tries_for) FROM table_name_69 WHERE points_against > 87 AND tries_against < 28 AND points_diff = "+63" | Which Tries for has Points against larger than 87, and Tries against smaller than 28, and Points diff of +63? | CREATE TABLE table_name_69 (tries_for INTEGER, points_diff VARCHAR, points_against VARCHAR, tries_against VARCHAR) |
SELECT manager FROM table_name_53 WHERE club = "st. johnstone" | Who is the manager of the St. Johnstone club? | CREATE TABLE table_name_53 (manager VARCHAR, club VARCHAR) |
SELECT t1.store_name FROM store AS t1 JOIN store_district AS t2 ON t1.store_id = t2.store_id WHERE district_id = (SELECT district_id FROM district ORDER BY city_population DESC LIMIT 1) | Find all the stores in the district with the most population. | CREATE TABLE store_district (store_id VARCHAR); CREATE TABLE district (district_id VARCHAR, city_population VARCHAR); CREATE TABLE store (store_name VARCHAR, store_id VARCHAR) |
SELECT away_team FROM table_name_94 WHERE home_team = "mauritius" | Which away team goes against the home team Mauritius? | CREATE TABLE table_name_94 (away_team VARCHAR, home_team VARCHAR) |
SELECT record FROM table_name_16 WHERE date = "april 24" | What is Record, when Date is "April 24"? | CREATE TABLE table_name_16 (record VARCHAR, date VARCHAR) |
SELECT is_3_m1945 FROM table_name_11 WHERE kv_85_m1943 = "40" | What's the IS-3 when the KV-85 is 40? | CREATE TABLE table_name_11 (is_3_m1945 VARCHAR, kv_85_m1943 VARCHAR) |
SELECT date FROM table_name_85 WHERE partnering = "laura golarsa" | What was the date of the game that was played against Laura Golarsa? | CREATE TABLE table_name_85 (date VARCHAR, partnering VARCHAR) |
SELECT android FROM table_11381701_3 WHERE windows = "1.15%" | What is the percentage of Android use when Windows is 1.15%? | CREATE TABLE table_11381701_3 (android VARCHAR, windows VARCHAR) |
SELECT competition FROM table_1061075_1 WHERE aggregate = "4–7" | what's the competition where aggregate is 4–7 | CREATE TABLE table_1061075_1 (competition VARCHAR, aggregate VARCHAR) |
SELECT COUNT(date) FROM table_2266762_1 WHERE average_speed__mph_ = "91.033" | On how many dates was the average speed of the race 91.033 MPH? | CREATE TABLE table_2266762_1 (date VARCHAR, average_speed__mph_ VARCHAR) |
SELECT written_by FROM table_19068566_1 WHERE production_code = "3T7458" | When 3t7458 is the production code who are the writers? | CREATE TABLE table_19068566_1 (written_by VARCHAR, production_code VARCHAR) |
SELECT electorate FROM table_name_39 WHERE party = "country" AND state = "wa" AND member = "john hallett" | What is Electorate, when Party is "Country", when State is "WA", and when Member is "John Hallett"? | CREATE TABLE table_name_39 (electorate VARCHAR, member VARCHAR, party VARCHAR, state VARCHAR) |
SELECT AVG(year) FROM table_name_19 WHERE issue_price__proof_ = "$49.95" AND artist = "w.h.j. blakemore" | What's the average Year with an Issue Price (Proof) of $49.95, and Artist of W.H.J. Blakemore? | CREATE TABLE table_name_19 (year INTEGER, issue_price__proof_ VARCHAR, artist VARCHAR) |
SELECT record FROM table_17288869_7 WHERE high_points = "Dirk Nowitzki (19)" | What was the final record for the game in which Dirk Nowitzki (19) had the high points? | CREATE TABLE table_17288869_7 (record VARCHAR, high_points VARCHAR) |
SELECT MIN(position) FROM table_name_92 WHERE goals_against = 59 AND goals_for < 24 | What is the lowest position number when goals against was 59, and a goals for is smaller than 24? | CREATE TABLE table_name_92 (position INTEGER, goals_against VARCHAR, goals_for VARCHAR) |
SELECT total FROM table_name_84 WHERE builder = "international" | How many international builders are there? | CREATE TABLE table_name_84 (total VARCHAR, builder VARCHAR) |
SELECT MIN(episode__number) FROM table_name_42 WHERE airdate = "october 31, 2001" | What is the lowest episode # with an air date of October 31, 2001? | CREATE TABLE table_name_42 (episode__number INTEGER, airdate VARCHAR) |
SELECT SUM(draw) FROM table_name_91 WHERE performer = "gary o'shaughnessy" | How many draws did gary o'shaughnessy have? | CREATE TABLE table_name_91 (draw INTEGER, performer VARCHAR) |
SELECT location FROM table_name_64 WHERE county = "platte" | What's the location for the country of platte? | CREATE TABLE table_name_64 (location VARCHAR, county VARCHAR) |
SELECT władysławowo_, _poland FROM table_name_85 WHERE world_record = "clean & jerk" | What shows for Władysławowo, Poland when the world record was clean & jerk? | CREATE TABLE table_name_85 (władysławowo_ VARCHAR, _poland VARCHAR, world_record VARCHAR) |
SELECT winner_and_score FROM table_name_70 WHERE finalist = "aaron krickstein" | Which Winner and score has a Finalist of aaron krickstein? | CREATE TABLE table_name_70 (winner_and_score VARCHAR, finalist VARCHAR) |
SELECT COUNT(round) FROM table_name_11 WHERE pick = "7" | HOW MANY ROUNDS HAD A PICK OF 7? | CREATE TABLE table_name_11 (round VARCHAR, pick VARCHAR) |
SELECT visitor FROM table_name_74 WHERE date = "april 30" | What city was a visitor on the date of April 30? | CREATE TABLE table_name_74 (visitor VARCHAR, date VARCHAR) |
SELECT home FROM table_name_1 WHERE visitor = "philadelphia" AND date = "december 4" | What home has Philadelphia as the visitor, and december 4 as the date? | CREATE TABLE table_name_1 (home VARCHAR, visitor VARCHAR, date VARCHAR) |
SELECT recipient FROM table_name_30 WHERE award = "2010 kids' choice awards" AND result = "won" | Who won the 2010 Kids' Choice Awards? | CREATE TABLE table_name_30 (recipient VARCHAR, award VARCHAR, result VARCHAR) |
SELECT points_against FROM table_name_93 WHERE tries_against = "77" AND lost = "16" | What point against has tries against of 77, and a lost of 16? | CREATE TABLE table_name_93 (points_against VARCHAR, tries_against VARCHAR, lost VARCHAR) |
SELECT AVG(innhabitants) FROM table_name_87 WHERE mayor = "olav martin vik" | How many people did Mayor Olav Martin Vik preside over? | CREATE TABLE table_name_87 (innhabitants INTEGER, mayor VARCHAR) |
SELECT nationality FROM table_name_53 WHERE athlete = "livio berruti" | What's the nationality of Livio Berruti? | CREATE TABLE table_name_53 (nationality VARCHAR, athlete VARCHAR) |
SELECT MAX(draw) FROM table_name_45 WHERE goal_gain = 17 AND game > 14 | How many draws did the game after game 14 with goal gain 17 have? | CREATE TABLE table_name_45 (draw INTEGER, goal_gain VARCHAR, game VARCHAR) |
SELECT color_quality FROM table_name_9 WHERE relay = "✓" | what is the color quality when the relay is ✓? | CREATE TABLE table_name_9 (color_quality VARCHAR, relay VARCHAR) |
SELECT AVG(pick) FROM table_name_51 WHERE college = "indiana" | What is indiana college's average pick? | CREATE TABLE table_name_51 (pick INTEGER, college VARCHAR) |
SELECT seed FROM table_26423157_2 WHERE school = "California" | What seed was California? | CREATE TABLE table_26423157_2 (seed VARCHAR, school VARCHAR) |
SELECT MIN(total_votes) FROM table_19698421_1 WHERE year = "2005" | What was the total number of votes in the 2005 elections? | CREATE TABLE table_19698421_1 (total_votes INTEGER, year VARCHAR) |
SELECT MAX(year) FROM table_name_1 WHERE bronze = "wataru haraguchi" | What is listed as the highest Year that's also got a Bronze of Wataru Haraguchi? | CREATE TABLE table_name_1 (year INTEGER, bronze VARCHAR) |
SELECT DISTINCT t3.name FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN inst AS t3 ON t2.instid = t3.instid WHERE t1.fname = "Matthias" AND t1.lname = "Blume" | What is the name of the institution that "Matthias Blume" belongs to? | CREATE TABLE authorship (authid VARCHAR, instid VARCHAR); CREATE TABLE authors (authid VARCHAR, fname VARCHAR, lname VARCHAR); CREATE TABLE inst (name VARCHAR, instid VARCHAR) |
SELECT molecules FROM table_name_8 WHERE percent_of_mass = "1.0" | what is the molecules when the percent mass is 1.0? | CREATE TABLE table_name_8 (molecules VARCHAR, percent_of_mass VARCHAR) |
SELECT recnet FROM table_name_51 WHERE class = "b" AND city_of_license = "rouyn-noranda" | What is the RECNet with a Class of B and the City of License of Rouyn-Noranda? | CREATE TABLE table_name_51 (recnet VARCHAR, class VARCHAR, city_of_license VARCHAR) |
SELECT long FROM table_name_60 WHERE car = 26 | What is the long for the player with 26 carries? | CREATE TABLE table_name_60 (long VARCHAR, car VARCHAR) |
SELECT news_freq FROM table_name_90 WHERE time = "1:00pm–4:00pm" | What News Freq has a Time of 1:00pm–4:00pm? | CREATE TABLE table_name_90 (news_freq VARCHAR, time VARCHAR) |
SELECT cfl_team FROM table_25085059_1 WHERE position = "OL" AND college = "North Dakota" | What CFL team obtained a draft pick from North Dakota who plays OL position? | CREATE TABLE table_25085059_1 (cfl_team VARCHAR, position VARCHAR, college VARCHAR) |
SELECT venue FROM table_name_6 WHERE runner_up__average_in_final_ = "wayne jones (94.64)" | what is the venue when the runner-up (average in final) is wayne jones (94.64)? | CREATE TABLE table_name_6 (venue VARCHAR, runner_up__average_in_final_ VARCHAR) |
SELECT AVG(winner_rank) FROM matches | Find the average rank of winners in all matches. | CREATE TABLE matches (winner_rank INTEGER) |
SELECT faculty FROM faculty AS T1 JOIN campuses AS T2 ON T1.campus = T2.id WHERE T1.year = 2004 AND T2.campus = "San Francisco State University" | How many faculty lines are there in "San Francisco State University" in year 2004? | CREATE TABLE campuses (id VARCHAR, campus VARCHAR); CREATE TABLE faculty (campus VARCHAR, year VARCHAR) |
SELECT manuals FROM table_name_89 WHERE kind = "r" AND opus = "144" | What are the manuals with a kind of r, and an opus of 144? | CREATE TABLE table_name_89 (manuals VARCHAR, kind VARCHAR, opus VARCHAR) |
SELECT T3.name FROM exhibition_record AS T1 JOIN exhibition AS T2 ON T1.exhibition_id = T2.exhibition_id JOIN artist AS T3 ON T3.artist_id = T2.artist_id GROUP BY T3.artist_id HAVING AVG(T1.attendance) > 200 | Show all artist names with an average exhibition attendance over 200. | CREATE TABLE artist (name VARCHAR, artist_id VARCHAR); CREATE TABLE exhibition (exhibition_id VARCHAR, artist_id VARCHAR); CREATE TABLE exhibition_record (exhibition_id VARCHAR, attendance INTEGER) |
SELECT home_team FROM table_name_38 WHERE venue = "punt road oval" | What is the home team for punt road oval? | CREATE TABLE table_name_38 (home_team VARCHAR, venue VARCHAR) |
SELECT tournament FROM table_name_82 WHERE outcome = "runner-up" AND partner = "aurelija misevičiūtė" | Partner Aurelija Misevičiūtė had an outcome of runner-up in what tournament? | CREATE TABLE table_name_82 (tournament VARCHAR, outcome VARCHAR, partner VARCHAR) |
SELECT written_by FROM table_22835602_1 WHERE production_code = "1ARK07" | List all who wrote for production code 1ark07. | CREATE TABLE table_22835602_1 (written_by VARCHAR, production_code VARCHAR) |
SELECT affiliation FROM table_name_87 WHERE player = "diego walsh" | Tell me the affiliation for diego walsh | CREATE TABLE table_name_87 (affiliation VARCHAR, player VARCHAR) |
SELECT position FROM table_name_45 WHERE round > 4 AND player = "patrick johnson" | Which Position has a Round larger than 4, and a Player of patrick johnson? | CREATE TABLE table_name_45 (position VARCHAR, round VARCHAR, player VARCHAR) |
SELECT COUNT(tourism_receipts__2003___as__percentage_of_exports_) FROM table_18524_6 WHERE tourism_competitiveness__2011___ttci_ = "3.26" | Name the tourism receipts 2003 for tourism competitiveness 3.26 | CREATE TABLE table_18524_6 (tourism_receipts__2003___as__percentage_of_exports_ VARCHAR, tourism_competitiveness__2011___ttci_ VARCHAR) |
SELECT MAX(loss) FROM table_name_75 WHERE long > 0 AND gain > 484 AND avg_g > 126.4 | What is the highest Loss, when Long is greater than 0, when Gain is greater than 484, and when Avg/g is greater than 126.4? | CREATE TABLE table_name_75 (loss INTEGER, avg_g VARCHAR, long VARCHAR, gain VARCHAR) |
SELECT away_team AS score FROM table_name_27 WHERE venue = "princes park" | What was the away teams score at Princes Park? | CREATE TABLE table_name_27 (away_team VARCHAR, venue VARCHAR) |
SELECT competition FROM table_name_48 WHERE date = "august 25, 2007" | Name the competition that was on august 25, 2007 | CREATE TABLE table_name_48 (competition VARCHAR, date VARCHAR) |
SELECT area_km² FROM table_name_45 WHERE country = "japan" | What is Japan's Area km²? | CREATE TABLE table_name_45 (area_km² VARCHAR, country VARCHAR) |
SELECT crowd FROM table_name_12 WHERE home_team = "st kilda" | During st kilda's home game, what was the number of people in the crowd? | CREATE TABLE table_name_12 (crowd VARCHAR, home_team VARCHAR) |
SELECT call_sign FROM table_name_60 WHERE erp_w > 38 AND city_of_license = "great falls, montana" | What is the call sign of the translator with an ERP W greater than 38 and a city license from Great Falls, Montana? | CREATE TABLE table_name_60 (call_sign VARCHAR, erp_w VARCHAR, city_of_license VARCHAR) |
SELECT result FROM table_name_32 WHERE date = "november 22" | What is Result, when Date is "November 22"? | CREATE TABLE table_name_32 (result VARCHAR, date VARCHAR) |
SELECT calorie FROM table_name_64 WHERE watt_hour = "1" | How many calories is 1 watt hour? | CREATE TABLE table_name_64 (calorie VARCHAR, watt_hour VARCHAR) |
SELECT MAX(avg) FROM table_name_83 WHERE yards = 1229 | Which largest average had 1229 yards? | CREATE TABLE table_name_83 (avg INTEGER, yards VARCHAR) |
SELECT lost FROM table_name_90 WHERE club = "abercarn rfc" | How many losses does Abercarn RFC have? | CREATE TABLE table_name_90 (lost VARCHAR, club VARCHAR) |
SELECT MIN(w) FROM table_29542269_2 | What is the lowest overall amount of w's? | CREATE TABLE table_29542269_2 (w INTEGER) |
SELECT decision FROM table_name_56 WHERE visitor = "carolina" | Which team won when the visitor was Carolina? | CREATE TABLE table_name_56 (decision VARCHAR, visitor VARCHAR) |
SELECT COUNT(type) FROM table_261927_2 WHERE location = "Bridgewater, Massachusetts" | How many different types are allocated to the institution in Bridgewater, Massachusetts? | CREATE TABLE table_261927_2 (type VARCHAR, location VARCHAR) |
SELECT city FROM table_name_80 WHERE stadium = "stadio artemio franchi, florence" | Which City has a Stadium of stadio artemio franchi, florence? | CREATE TABLE table_name_80 (city VARCHAR, stadium VARCHAR) |
SELECT SUM(points) FROM table_name_9 WHERE record = "21–36–9" AND attendance > 14 OFFSET 768 | Which Points have a Record of 21–36–9, and an Attendance larger than 14,768? | CREATE TABLE table_name_9 (points INTEGER, record VARCHAR, attendance VARCHAR) |
SELECT product_id FROM Order_Items GROUP BY product_id HAVING COUNT(*) > 3 UNION SELECT product_id FROM Product_Suppliers GROUP BY product_id HAVING SUM(total_amount_purchased) > 80000 | Return the ids of all products that were ordered more than three times or supplied more than 80000. | CREATE TABLE Order_Items (product_id VARCHAR, total_amount_purchased INTEGER); CREATE TABLE Product_Suppliers (product_id VARCHAR, total_amount_purchased INTEGER) |
SELECT dates_active FROM table_10602294_1 WHERE name = "Kamba" | When was Kamba active? | CREATE TABLE table_10602294_1 (dates_active VARCHAR, name VARCHAR) |
SELECT segment_c FROM table_15187735_1 WHERE segment_d = "Fluorescent Tubes" | What was segment C when segment D was fluorescent tubes? | CREATE TABLE table_15187735_1 (segment_c VARCHAR, segment_d VARCHAR) |
SELECT MAX(year) FROM table_name_69 WHERE team = "honda" AND points = 238 | Team of Honda and a point total of 238 is what highest year? | CREATE TABLE table_name_69 (year INTEGER, team VARCHAR, points VARCHAR) |
SELECT label FROM table_name_54 WHERE region = "netherlands" | What is the label from the Netherlands? | CREATE TABLE table_name_54 (label VARCHAR, region VARCHAR) |
SELECT game_site FROM table_name_27 WHERE result = "l 21–13" | What game site had a result at l 21–13? | CREATE TABLE table_name_27 (game_site VARCHAR, result VARCHAR) |
SELECT date_of_birth__age_ FROM table_name_71 WHERE club_province = "wild knights" AND player = "tomokazu soma" | When was Tomokazu Soma born who plays for the wild knights? | CREATE TABLE table_name_71 (date_of_birth__age_ VARCHAR, club_province VARCHAR, player VARCHAR) |
SELECT republican_ticket FROM table_name_8 WHERE office = "inspector of state prisons" | Who was on the Republican ticket for the office of Inspector of state prisons? | CREATE TABLE table_name_8 (republican_ticket VARCHAR, office VARCHAR) |
SELECT last_title FROM table_name_91 WHERE titles > 12 AND position_in_2012 = "7th" | what is the last title when the titles is more than 12 and the position in 2012 is 7th | CREATE TABLE table_name_91 (last_title VARCHAR, titles VARCHAR, position_in_2012 VARCHAR) |
SELECT MIN(week) FROM table_name_94 WHERE date = "november 28, 1974" | What is the week of the game played on November 28, 1974? | CREATE TABLE table_name_94 (week INTEGER, date VARCHAR) |
SELECT country FROM table_name_62 WHERE player = "jodie mudd" | Which Country has a Player of jodie mudd? | CREATE TABLE table_name_62 (country VARCHAR, player VARCHAR) |
SELECT party FROM table_1341604_22 WHERE district = "Massachusetts 3" | what's the party with dbeingtrict being massachusetts 3 | CREATE TABLE table_1341604_22 (party VARCHAR, district VARCHAR) |
SELECT name, LOCATION FROM track | Show the name and location for all tracks. | CREATE TABLE track (name VARCHAR, LOCATION VARCHAR) |
SELECT label FROM table_name_51 WHERE catalog = "2508668" | What is the Label of the Release with Catalog number 2508668? | CREATE TABLE table_name_51 (label VARCHAR, catalog VARCHAR) |
SELECT MIN(episode) FROM table_15187735_20 WHERE segment_a = "Thinning Shears" | What episode number is the episode with a segment on thinning shears? | CREATE TABLE table_15187735_20 (episode INTEGER, segment_a VARCHAR) |
SELECT MAX(starts) FROM table_name_49 WHERE year = 2007 AND avg_start > 17.6 | What was the highest number of starts in 2007 when the average start was over 17.6? | CREATE TABLE table_name_49 (starts INTEGER, year VARCHAR, avg_start VARCHAR) |
SELECT home_team AS score FROM table_name_43 WHERE home_team = "richmond" | What did Richmond score as the home team? | CREATE TABLE table_name_43 (home_team VARCHAR) |
SELECT winning_score FROM table_name_4 WHERE date = "7 jun 1976" | What was the winning score on 7 jun 1976? | CREATE TABLE table_name_4 (winning_score VARCHAR, date VARCHAR) |
SELECT accreditation_level FROM table_name_72 WHERE date = "approved (awarded 05.12.12)" | What is the accreditation level for the approved (awarded 05.12.12) date? | CREATE TABLE table_name_72 (accreditation_level VARCHAR, date VARCHAR) |
SELECT song_title FROM table_13805432_2 WHERE artist = "Pat Boone" | what's the song title with artbeingt being pat boone | CREATE TABLE table_13805432_2 (song_title VARCHAR, artist VARCHAR) |
SELECT rowers FROM table_name_4 WHERE country = "portugal" | Which rowers represented the country of portugal? | CREATE TABLE table_name_4 (rowers VARCHAR, country VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.