question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
How many season 4 appearances are there by Mrs. Jennifer Knight?
CREATE TABLE table_26240046_1 (season_4 INTEGER, character VARCHAR)
SELECT MIN(season_4) FROM table_26240046_1 WHERE character = "Mrs. Jennifer Knight"
Of the players who scored 5 three pointers, what is the highest number of games played?
CREATE TABLE table_22824199_1 (games_played INTEGER, three_pointers VARCHAR)
SELECT MAX(games_played) FROM table_22824199_1 WHERE three_pointers = 5
Which constructor has 10-12 rounds and a M7A chassis?
CREATE TABLE table_name_40 (constructor VARCHAR, rounds VARCHAR, chassis VARCHAR)
SELECT constructor FROM table_name_40 WHERE rounds = "10-12" AND chassis = "m7a"
What is the Top-25 with a Top-10 of 8, and an Events of 45?
CREATE TABLE table_name_63 (top_25 INTEGER, top_10 VARCHAR, events VARCHAR)
SELECT AVG(top_25) FROM table_name_63 WHERE top_10 = 8 AND events = 45
What was the position for the Josef Kaufmann Racing team?
CREATE TABLE table_17246160_1 (position VARCHAR, team VARCHAR)
SELECT position FROM table_17246160_1 WHERE team = "Josef Kaufmann Racing"
What is the smallest quantity displayed under the title "first runner-up"?
CREATE TABLE table_29942205_1 (Id VARCHAR)
SELECT MIN(1 AS st_runner_up) FROM table_29942205_1
What is the last name of the youngest student?
CREATE TABLE Student (LName VARCHAR, age INTEGER)
SELECT LName FROM Student WHERE age = (SELECT MIN(age) FROM Student)
With the Republican ticket of Frank M. Williams who was the Progressive ticket?
CREATE TABLE table_name_63 (progressive_ticket VARCHAR, republican_ticket VARCHAR)
SELECT progressive_ticket FROM table_name_63 WHERE republican_ticket = "frank m. williams"
What is the average episode number where jimmy mulville was the 4th performer?
CREATE TABLE table_name_35 (episode INTEGER, performer_4 VARCHAR)
SELECT AVG(episode) FROM table_name_35 WHERE performer_4 = "jimmy mulville"
Before 2007, what was the avg start that had a pole of 0 and in 65th position?
CREATE TABLE table_name_81 (starts INTEGER, year VARCHAR, poles VARCHAR, position VARCHAR)
SELECT AVG(starts) FROM table_name_81 WHERE poles = 0 AND position = "65th" AND year < 2007
Type of primary, and a Call letters of kbjs has what format?
CREATE TABLE table_name_74 (format VARCHAR, type VARCHAR, call_letters VARCHAR)
SELECT format FROM table_name_74 WHERE type = "primary" AND call_letters = "kbjs"
What are the fa.brill when w.h. archer is known as r. newman?
CREATE TABLE table_1320857_1 (fa_brill VARCHAR, wh_archer VARCHAR)
SELECT fa_brill FROM table_1320857_1 WHERE wh_archer = "R. Newman"
What was the value in 2012 when 2002 was Q1 and 2010 was 1R?
CREATE TABLE table_name_83 (Id VARCHAR)
SELECT 2012 FROM table_name_83 WHERE 2002 = "q1" AND 2010 = "1r"
What is the attendance of the game against the New Orleans Saints before game 11?
CREATE TABLE table_name_20 (attendance INTEGER, opponent VARCHAR, game VARCHAR)
SELECT AVG(attendance) FROM table_name_20 WHERE opponent = "new orleans saints" AND game < 11
What Records Time is 3:38?
CREATE TABLE table_name_19 (record VARCHAR, time VARCHAR)
SELECT record FROM table_name_19 WHERE time = "3:38"
what's the thursday time with location being hawthorne
CREATE TABLE table_11019212_1 (thursday VARCHAR, location VARCHAR)
SELECT thursday FROM table_11019212_1 WHERE location = "Hawthorne"
what's the college/junior/club team with nhl team being california golden seals
CREATE TABLE table_1473672_9 (college_junior_club_team VARCHAR, nhl_team VARCHAR)
SELECT college_junior_club_team FROM table_1473672_9 WHERE nhl_team = "California Golden Seals"
What away team played at Kardinia Park?
CREATE TABLE table_name_63 (away_team VARCHAR, venue VARCHAR)
SELECT away_team AS score FROM table_name_63 WHERE venue = "kardinia park"
If the net worth of fixed assets is 621, what is the current ratio?
CREATE TABLE table_19166421_1 (current_ratio VARCHAR, net_worth_to_fixed_assets VARCHAR)
SELECT current_ratio FROM table_19166421_1 WHERE net_worth_to_fixed_assets = 621
What venue has a weight (kg) greater than 55, and won as the result?
CREATE TABLE table_name_64 (venue VARCHAR, weight__kg_ VARCHAR, result VARCHAR)
SELECT venue FROM table_name_64 WHERE weight__kg_ > 55 AND result = "won"
Name the chassis for b. bira
CREATE TABLE table_28190534_1 (chassis VARCHAR, driver VARCHAR)
SELECT chassis FROM table_28190534_1 WHERE driver = "B. Bira"
What was the average round for the oulton park circuit?
CREATE TABLE table_name_56 (round INTEGER, circuit VARCHAR)
SELECT AVG(round) FROM table_name_56 WHERE circuit = "oulton park"
What is the result of the game when the attendance is 62,078?
CREATE TABLE table_name_6 (result VARCHAR, attendance VARCHAR)
SELECT result FROM table_name_6 WHERE attendance = "62,078"
What is every country with a flag with population of 11346670?
CREATE TABLE table_298550_1 (country_with_flag VARCHAR, population__1_july_2005_est_ VARCHAR)
SELECT country_with_flag FROM table_298550_1 WHERE population__1_july_2005_est_ = 11346670
If there is a VCRT of 7.62mm (0.3in) fn mag 60-20 machine gun, what is the VCTP of that?
CREATE TABLE table_name_86 (vctp VARCHAR, vcrt VARCHAR)
SELECT vctp FROM table_name_86 WHERE vcrt = "7.62mm (0.3in) fn mag 60-20 machine gun"
What number is Fall 06 from the state with 79 or less in Fall 08, 36 or greater in Fall 07 and greater than 74 in Fall 05?
CREATE TABLE table_name_92 (fall_06 INTEGER, fall_05 VARCHAR, fall_08 VARCHAR, fall_07 VARCHAR)
SELECT AVG(fall_06) FROM table_name_92 WHERE fall_08 < 79 AND fall_07 > 36 AND fall_05 > 74
What is Last Appearance, when Wins is less than 1, when Losses is 1, and when School is Oklahoma State?
CREATE TABLE table_name_65 (last_appearance VARCHAR, school VARCHAR, wins VARCHAR, losses VARCHAR)
SELECT last_appearance FROM table_name_65 WHERE wins < 1 AND losses = 1 AND school = "oklahoma state"
In what Round was George Thomas Picked?
CREATE TABLE table_name_24 (round INTEGER, name VARCHAR)
SELECT AVG(round) FROM table_name_24 WHERE name = "george thomas"
For Venue vfl park, what was the home team score?
CREATE TABLE table_name_98 (home_team VARCHAR, venue VARCHAR)
SELECT home_team AS score FROM table_name_98 WHERE venue = "vfl park"
How many years is Antonio Pompa-Baldi Italy first?
CREATE TABLE table_name_36 (year VARCHAR, first VARCHAR)
SELECT COUNT(year) FROM table_name_36 WHERE first = "antonio pompa-baldi italy"
What was the event on Thurs 27 Aug when Tues 25 Aug was 23' 00.59 98.384mph?
CREATE TABLE table_23465864_6 (thurs_27_aug VARCHAR, tues_25_aug VARCHAR)
SELECT thurs_27_aug FROM table_23465864_6 WHERE tues_25_aug = "23' 00.59 98.384mph"
What is the percentage of Glendale when La Canada Flintridge is 5%?
CREATE TABLE table_name_20 (glendale VARCHAR, la_cañada_flintridge VARCHAR)
SELECT glendale FROM table_name_20 WHERE la_cañada_flintridge = "5%"
What was the score when they had a 25-41-9 record?
CREATE TABLE table_name_84 (score VARCHAR, record VARCHAR)
SELECT score FROM table_name_84 WHERE record = "25-41-9"
Find the name and attribute ID of the attribute definitions with attribute value 0.
CREATE TABLE Catalog_Contents_Additional_Attributes (attribute_id VARCHAR, attribute_value VARCHAR); CREATE TABLE Attribute_Definitions (attribute_name VARCHAR, attribute_id VARCHAR)
SELECT t1.attribute_name, t1.attribute_id FROM Attribute_Definitions AS t1 JOIN Catalog_Contents_Additional_Attributes AS t2 ON t1.attribute_id = t2.attribute_id WHERE t2.attribute_value = 0
What is the rank of the new zealand team that had fb listed under notes?
CREATE TABLE table_name_31 (rank VARCHAR, notes VARCHAR, country VARCHAR)
SELECT rank FROM table_name_31 WHERE notes = "fb" AND country = "new zealand"
What is the average Area (in km²), when Markatal is less than 0?
CREATE TABLE table_name_81 (area__in_km²_ INTEGER, markatal INTEGER)
SELECT AVG(area__in_km²_) FROM table_name_81 WHERE markatal < 0
What's the title of the episode seen by 3.8 million people in the US?
CREATE TABLE table_20046379_3 (title VARCHAR, us_viewers__millions_ VARCHAR)
SELECT title FROM table_20046379_3 WHERE us_viewers__millions_ = "3.8"
What is the name of the document with the most number of sections?
CREATE TABLE document_sections (document_code VARCHAR); CREATE TABLE documents (document_name VARCHAR, document_code VARCHAR)
SELECT t1.document_name FROM documents AS t1 JOIN document_sections AS t2 ON t1.document_code = t2.document_code GROUP BY t1.document_code ORDER BY COUNT(*) DESC LIMIT 1
Name the others % for bush number 1372
CREATE TABLE table_23014476_1 (others__percentage VARCHAR, bush__number VARCHAR)
SELECT others__percentage FROM table_23014476_1 WHERE bush__number = 1372
What is the 1988 result that has a 1994 result of A, and 3r as the 1987 result?
CREATE TABLE table_name_19 (Id VARCHAR)
SELECT 1988 FROM table_name_19 WHERE 1994 = "a" AND 1987 = "3r"
How many settlements are in český krumlov (ck) with a population density higher than 38?
CREATE TABLE table_name_76 (noof_settlements INTEGER, district VARCHAR, pop_dens VARCHAR)
SELECT SUM(noof_settlements) FROM table_name_76 WHERE district = "český krumlov (ck)" AND pop_dens > 38
What is the highest total Bronze larger than 10, Silver larger than 28, and a Gold of 58?
CREATE TABLE table_name_7 (total INTEGER, gold VARCHAR, bronze VARCHAR, silver VARCHAR)
SELECT MAX(total) FROM table_name_7 WHERE bronze > 10 AND silver > 28 AND gold = 58
What year has Stacy as the category and award of Best Reality Star in Social Media?
CREATE TABLE table_name_10 (year INTEGER, category VARCHAR, awards VARCHAR)
SELECT MIN(year) FROM table_name_10 WHERE category = "stacy" AND awards = "best reality star in social media"
What was the largest ethnic group in 2002 of the settlement with the cyrillic name of ватин?
CREATE TABLE table_2562572_46 (largest_ethnic_group__2002_ VARCHAR, cyrillic_name_other_names VARCHAR)
SELECT largest_ethnic_group__2002_ FROM table_2562572_46 WHERE cyrillic_name_other_names = "Ватин"
What is the highest number of plays when drawn is more than 4, more than 30 points were earned, and 37 goals scored for the team?
CREATE TABLE table_name_91 (played INTEGER, points VARCHAR, drawn VARCHAR, goals_for VARCHAR)
SELECT MAX(played) FROM table_name_91 WHERE drawn > 4 AND goals_for = 37 AND points > 30
What Gold has a Silver greater than 30 and a Total less than 107?
CREATE TABLE table_name_40 (gold VARCHAR, silver VARCHAR, total VARCHAR)
SELECT gold FROM table_name_40 WHERE silver > 30 AND total < 107
Name the first elected for abner j. mikva
CREATE TABLE table_1341672_14 (first_elected VARCHAR, incumbent VARCHAR)
SELECT first_elected FROM table_1341672_14 WHERE incumbent = "Abner J. Mikva"
Who had the highest assists on March 18?
CREATE TABLE table_17121262_9 (high_assists VARCHAR, date VARCHAR)
SELECT high_assists FROM table_17121262_9 WHERE date = "March 18"
Which Owner(s) has a Description of hunslet engine company 0-6-0st?
CREATE TABLE table_name_18 (owner_s_ VARCHAR, description VARCHAR)
SELECT owner_s_ FROM table_name_18 WHERE description = "hunslet engine company 0-6-0st"
If the locale is Ontario, what is the W minimum?
CREATE TABLE table_25933764_1 (w INTEGER, locale VARCHAR, Ontario VARCHAR)
SELECT MIN(w) FROM table_25933764_1 WHERE locale = Ontario
How much gold did South Korea get?
CREATE TABLE table_name_49 (gold INTEGER, nation VARCHAR)
SELECT SUM(gold) FROM table_name_49 WHERE nation = "south korea"
Who built michael schumacher's car that went under 31 laps?
CREATE TABLE table_name_24 (constructor VARCHAR, laps VARCHAR, driver VARCHAR)
SELECT constructor FROM table_name_24 WHERE laps < 31 AND driver = "michael schumacher"
What is the sum of Pick #, when College is Laurier?
CREATE TABLE table_name_79 (pick__number INTEGER, college VARCHAR)
SELECT SUM(pick__number) FROM table_name_79 WHERE college = "laurier"
Which is the largest area in Greenville County, by square mile?
CREATE TABLE table_name_88 (area__sq_mi_ INTEGER, county VARCHAR)
SELECT MAX(area__sq_mi_) FROM table_name_88 WHERE county = "greenville county"
What are the wines that have prices lower than 50 and have appelations in Monterey county?
CREATE TABLE APPELLATIONS (Appelation VARCHAR, County VARCHAR); CREATE TABLE WINE (Name VARCHAR, Appelation VARCHAR, price VARCHAR)
SELECT T2.Name FROM APPELLATIONS AS T1 JOIN WINE AS T2 ON T1.Appelation = T2.Appelation WHERE T1.County = "Monterey" AND T2.price < 50
What team was he on when he finished in 11th position?
CREATE TABLE table_24491017_1 (team VARCHAR, position VARCHAR)
SELECT team FROM table_24491017_1 WHERE position = "11th"
Who was the original artist when the theme was 1980s?
CREATE TABLE table_15796072_1 (original_artist VARCHAR, theme VARCHAR)
SELECT original_artist FROM table_15796072_1 WHERE theme = "1980s"
What is the Score that has a Player of Ernie Els?
CREATE TABLE table_name_28 (score VARCHAR, player VARCHAR)
SELECT score FROM table_name_28 WHERE player = "ernie els"
What is the total number of years that have divisions greater than 4?
CREATE TABLE table_name_62 (year VARCHAR, division INTEGER)
SELECT COUNT(year) FROM table_name_62 WHERE division > 4
Which Local name has a Network of tvn?
CREATE TABLE table_name_36 (local_name VARCHAR, network VARCHAR)
SELECT local_name FROM table_name_36 WHERE network = "tvn"
Who received gold when the event is road race details and silver is max weber germany (ger)?
CREATE TABLE table_name_96 (gold VARCHAR, event VARCHAR, silver VARCHAR)
SELECT gold FROM table_name_96 WHERE event = "road race details" AND silver = "max weber germany (ger)"
What series have Caroline Flack as a main presenter?
CREATE TABLE table_14345690_15 (series VARCHAR, main_presenter VARCHAR)
SELECT series FROM table_14345690_15 WHERE main_presenter = "Caroline Flack"
Who directed episode 11 in the series?
CREATE TABLE table_26136228_3 (directed_by VARCHAR, series_no VARCHAR)
SELECT directed_by FROM table_26136228_3 WHERE series_no = 11
What is the june 10-11 when august 21-22 is august 21, 2017?
CREATE TABLE table_25355392_2 (june_10_11 VARCHAR, august_21_22 VARCHAR)
SELECT june_10_11 FROM table_25355392_2 WHERE august_21_22 = "August 21, 2017"
What is the dance that has priscilla presley is the worst dancer(s), and the worst score of 21?
CREATE TABLE table_name_68 (dance VARCHAR, worst_dancer_s_ VARCHAR, worst_score VARCHAR)
SELECT dance FROM table_name_68 WHERE worst_dancer_s_ = "priscilla presley" AND worst_score = "21"
What Inchicore Class has a GSR Class of 235?
CREATE TABLE table_name_4 (inchicore_class VARCHAR, gsr_class VARCHAR)
SELECT inchicore_class FROM table_name_4 WHERE gsr_class = "235"
What Venue has more than 1 Championship and was Established after 1957?
CREATE TABLE table_name_4 (venue VARCHAR, championships VARCHAR, established VARCHAR)
SELECT venue FROM table_name_4 WHERE championships = 1 AND established > 1957
Find the name of the company that produces both furnitures with less than 6 components and furnitures with more than 10 components.
CREATE TABLE furniture_manufacte (Furniture_ID VARCHAR, manufacturer_id VARCHAR); CREATE TABLE manufacturer (name VARCHAR, manufacturer_id VARCHAR); CREATE TABLE furniture (Furniture_ID VARCHAR, num_of_component INTEGER)
SELECT t3.name FROM furniture AS t1 JOIN furniture_manufacte AS t2 ON t1.Furniture_ID = t2.Furniture_ID JOIN manufacturer AS t3 ON t2.manufacturer_id = t3.manufacturer_id WHERE t1.num_of_component < 6 INTERSECT SELECT t3.name FROM furniture AS t1 JOIN furniture_manufacte AS t2 ON t1.Furniture_ID = t2.Furniture_ID JOIN ...
The away team of Richmond played on what grounds?
CREATE TABLE table_16388230_1 (ground VARCHAR, away_team VARCHAR)
SELECT ground FROM table_16388230_1 WHERE away_team = "Richmond"
What is the value for Position, when the Series is the Macau Grand Prix, and when the Season is before 2007?
CREATE TABLE table_name_98 (position VARCHAR, series VARCHAR, season VARCHAR)
SELECT position FROM table_name_98 WHERE series = "macau grand prix" AND season < 2007
What is the final record for the Philadelphia 76ers?
CREATE TABLE table_name_58 (record VARCHAR, opponent VARCHAR)
SELECT record FROM table_name_58 WHERE opponent = "philadelphia 76ers"
What is the result of the match with a H/A of A and a kick off at 1992-10-31 16:00?
CREATE TABLE table_name_14 (result VARCHAR, h___a VARCHAR, kick_off VARCHAR)
SELECT result FROM table_name_14 WHERE h___a = "a" AND kick_off = "1992-10-31 16:00"
what's the jp -210- with title and source being fun! fun! minigolf
CREATE TABLE table_13663434_1 (jp__210_ VARCHAR, title_and_source VARCHAR)
SELECT jp__210_ FROM table_13663434_1 WHERE title_and_source = "Fun! Fun! Minigolf"
Which home team played the Away team from Richmond?
CREATE TABLE table_name_29 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_29 WHERE away_team = "richmond"
What divisions was in the year 1993?
CREATE TABLE table_name_93 (division VARCHAR, year VARCHAR)
SELECT division FROM table_name_93 WHERE year = 1993
Which is the class A when Marion was the class AA
CREATE TABLE table_14747043_1 (class_a VARCHAR, class_aA VARCHAR, Marion VARCHAR)
SELECT class_a FROM table_14747043_1 WHERE class_aA = Marion
Which Tongan has a North Marquesan of /haʔe/?
CREATE TABLE table_name_15 (tongan VARCHAR, north_marquesan VARCHAR)
SELECT tongan FROM table_name_15 WHERE north_marquesan = "/haʔe/"
What is the background of the candidate daniel phillips?
CREATE TABLE table_26263322_1 (background VARCHAR, candidate VARCHAR)
SELECT background FROM table_26263322_1 WHERE candidate = "Daniel Phillips"
What is the multiplier 1 for chips with a frequency of 1800MHz?
CREATE TABLE table_name_25 (multiplier_1 VARCHAR, frequency VARCHAR)
SELECT multiplier_1 FROM table_name_25 WHERE frequency = "1800mhz"
What is Milena Reljin's place with a smaller than 9.8 rope?
CREATE TABLE table_name_5 (place VARCHAR, rope VARCHAR, name VARCHAR)
SELECT place FROM table_name_5 WHERE rope < 9.8 AND name = "milena reljin"
Who is third to Xu Xiaoming at second?
CREATE TABLE table_name_23 (third VARCHAR, second VARCHAR)
SELECT third FROM table_name_23 WHERE second = "xu xiaoming"
What is the Name of the Historic House of the 18th Century?
CREATE TABLE table_name_79 (name VARCHAR, type VARCHAR, date VARCHAR)
SELECT name FROM table_name_79 WHERE type = "historic house" AND date = "18th century"
Which Color has a Transcription of wan suk?
CREATE TABLE table_name_16 (color VARCHAR, transcription VARCHAR)
SELECT color FROM table_name_16 WHERE transcription = "wan suk"
What is the mean number of languages for the monthly frequency when the publisher is the hearst corporation?
CREATE TABLE table_name_23 (number_of_languages INTEGER, frequency VARCHAR, publisher VARCHAR)
SELECT AVG(number_of_languages) FROM table_name_23 WHERE frequency = "monthly" AND publisher = "hearst corporation"
What is the result of men's doubles when there was no competition?
CREATE TABLE table_14904221_1 (mixed_doubles VARCHAR, mens_doubles VARCHAR)
SELECT mixed_doubles FROM table_14904221_1 WHERE mens_doubles = "no competition"
What is the average for 2009 when 2001 is more than 0, 1996 is less than 1 and 2004 is more than 2
CREATE TABLE table_name_60 (Id VARCHAR)
SELECT AVG(2009) FROM table_name_60 WHERE 2001 > 0 AND 1996 < 1 AND 2004 > 2
What word would a Castilian speaker use for the Italian word auto(mobile)?
CREATE TABLE table_name_95 (castilian VARCHAR, italian VARCHAR)
SELECT castilian FROM table_name_95 WHERE italian = "auto(mobile)"
How many years did Wilson Fittipaldi race?
CREATE TABLE table_name_97 (year VARCHAR, driver VARCHAR)
SELECT COUNT(year) FROM table_name_97 WHERE driver = "wilson fittipaldi"
What is the record for May 31?
CREATE TABLE table_name_83 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_83 WHERE date = "may 31"
what's the actor with character being judge joseph ratner
CREATE TABLE table_11210576_4 (actor VARCHAR, character VARCHAR)
SELECT actor FROM table_11210576_4 WHERE character = "Judge Joseph Ratner"
What is the average unit price of tracks that belong to Jazz genre?
CREATE TABLE TRACK (GenreId VARCHAR); CREATE TABLE GENRE (GenreId VARCHAR, Name VARCHAR)
SELECT AVG(UnitPrice) FROM GENRE AS T1 JOIN TRACK AS T2 ON T1.GenreId = T2.GenreId WHERE T1.Name = "Jazz"
What's the Italian Pluperfect when the English is We Had Heard?
CREATE TABLE table_name_83 (italian VARCHAR, english VARCHAR)
SELECT italian FROM table_name_83 WHERE english = "we had heard"
Who produced Laura Tunstall?
CREATE TABLE table_name_91 (producer_s_ VARCHAR, recipient VARCHAR)
SELECT producer_s_ FROM table_name_91 WHERE recipient = "laura tunstall"
What is the position of the player with an overall of 45?
CREATE TABLE table_name_70 (position VARCHAR, overall VARCHAR)
SELECT position FROM table_name_70 WHERE overall = 45
What is Date (Closing), when Year is greater than 2011?
CREATE TABLE table_name_83 (date__closing_ VARCHAR, year INTEGER)
SELECT date__closing_ FROM table_name_83 WHERE year > 2011
What is Internet Plan, when Price is "22 EUR"?
CREATE TABLE table_name_48 (internet_plan VARCHAR, price VARCHAR)
SELECT internet_plan FROM table_name_48 WHERE price = "22 eur"
Name the opponent for 10-04-2007
CREATE TABLE table_name_46 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_46 WHERE date = "10-04-2007"
Which city has frequency under 106.5MHz and a callsign of w218ck?
CREATE TABLE table_name_31 (city_of_license VARCHAR, frequency_mhz VARCHAR, call_sign VARCHAR)
SELECT city_of_license FROM table_name_31 WHERE frequency_mhz < 106.5 AND call_sign = "w218ck"
What was the notes of the 400 m event before 2004 with a position of 12th (h)?
CREATE TABLE table_name_69 (notes VARCHAR, position VARCHAR, event VARCHAR, year VARCHAR)
SELECT notes FROM table_name_69 WHERE event = "400 m" AND year < 2004 AND position = "12th (h)"
Who is the Opponent of the match with a Record of 0-1?
CREATE TABLE table_name_12 (opponent VARCHAR, record VARCHAR)
SELECT opponent FROM table_name_12 WHERE record = "0-1"