answer
stringlengths
32
484
context
stringlengths
27
489
question
stringlengths
12
244
SELECT callsign FROM table_name_97 WHERE webcast = "listen live" AND frequency < 1210 AND brand = "newsradio 740 ktrh"
CREATE TABLE table_name_97 (callsign VARCHAR, brand VARCHAR, webcast VARCHAR, frequency VARCHAR)
Which Callsign includes a frequency under 1210, Newsradio 740 KTRH, and webcasts with listen live?
SELECT website FROM table_name_64 WHERE city_of_license = "monterrey" AND webcast = "listen live" AND frequency < 1050
CREATE TABLE table_name_64 (website VARCHAR, frequency VARCHAR, city_of_license VARCHAR, webcast VARCHAR)
Which website includes a webcast of listen live, a frequency under 1050, and is licensed in the city of Monterrey?
SELECT webcast FROM table_name_54 WHERE website = "ktrh.com"
CREATE TABLE table_name_54 (webcast VARCHAR, website VARCHAR)
The KTRH.com website includes which type of webcast?
SELECT website FROM table_name_53 WHERE city_of_license = "san antonio" AND webcast = "listen live" AND frequency = 680
CREATE TABLE table_name_53 (website VARCHAR, frequency VARCHAR, city_of_license VARCHAR, webcast VARCHAR)
Which website includes a webcast of listen live, a frequency under 680, and was licensed in the city of San Antonio.
SELECT MIN(frequency) FROM table_name_2 WHERE webcast = "listen live" AND city_of_license = "monterrey" AND callsign = "xet"
CREATE TABLE table_name_2 (frequency INTEGER, callsign VARCHAR, webcast VARCHAR, city_of_license VARCHAR)
Which long range AM station has the lowest frequency and includes a webcast of listen live, was licensed in the city of Monterrey, and uses the Callsign of xet?
SELECT MAX(games) FROM table_name_26 WHERE drawn < 0
CREATE TABLE table_name_26 (games INTEGER, drawn INTEGER)
Which Games is the highest one that has a Drawn smaller than 0?
SELECT score FROM table_name_11 WHERE game = 6
CREATE TABLE table_name_11 (score VARCHAR, game VARCHAR)
What is the score for game 6?
SELECT SUM(capacity) FROM table_name_38 WHERE location = "mogilev"
CREATE TABLE table_name_38 (capacity INTEGER, location VARCHAR)
Which Capacity has a Location of mogilev?
SELECT result FROM table_name_93 WHERE district = "california 2"
CREATE TABLE table_name_93 (result VARCHAR, district VARCHAR)
What was the District of California 2 result?
SELECT district FROM table_name_74 WHERE first_elected < 1906 AND incumbent = "julius kahn"
CREATE TABLE table_name_74 (district VARCHAR, first_elected VARCHAR, incumbent VARCHAR)
What was the district Incumbent Julius Kahn was in that was smaller than 1906?
SELECT MIN(first_elected) FROM table_name_47 WHERE result = "re-elected" AND incumbent = "sylvester c. smith"
CREATE TABLE table_name_47 (first_elected INTEGER, result VARCHAR, incumbent VARCHAR)
What was the lowest re-elected result for Sylvester C. Smith?
SELECT result FROM table_name_6 WHERE first_elected = 1898 AND incumbent = "julius kahn"
CREATE TABLE table_name_6 (result VARCHAR, first_elected VARCHAR, incumbent VARCHAR)
What was the result for Julius Kahn's first election of 1898?
SELECT party FROM table_name_32 WHERE result = "retired democratic hold" AND first_elected < 1884 AND incumbent = "samuel dibble"
CREATE TABLE table_name_32 (party VARCHAR, incumbent VARCHAR, result VARCHAR, first_elected VARCHAR)
Which party had a result of retired democratic hold and a first elected earlier than 1884 with an incumbent of samuel dibble?
SELECT district FROM table_name_7 WHERE first_elected = 1882 AND result = "re-elected"
CREATE TABLE table_name_7 (district VARCHAR, first_elected VARCHAR, result VARCHAR)
Which district had a first elected in 1882 with a result of re-elected?
SELECT MIN(average) FROM table_name_38 WHERE total < 134 AND number_of_dances < 3 AND rank_by_average < 12
CREATE TABLE table_name_38 (average INTEGER, rank_by_average VARCHAR, total VARCHAR, number_of_dances VARCHAR)
Which Average is the lowest one that has a Total smaller than 134, and a Number of dances smaller than 3, and a Rank by average smaller than 12?
SELECT couple FROM table_name_20 WHERE rank_by_average > 3 AND average > 16.5 AND total < 195 AND number_of_dances > 3
CREATE TABLE table_name_20 (couple VARCHAR, number_of_dances VARCHAR, total VARCHAR, rank_by_average VARCHAR, average VARCHAR)
Which Couple has a Rank by average larger than 3, and an Average larger than 16.5, and a Total smaller than 195, and a Number of dances larger than 3?
SELECT MIN(rank_by_average) FROM table_name_54 WHERE total = 425 AND place > 1
CREATE TABLE table_name_54 (rank_by_average INTEGER, total VARCHAR, place VARCHAR)
Which Rank by average is the lowest one that has a Total of 425, and a Place larger than 1?
SELECT nation FROM table_name_64 WHERE name = "carolina hermann / daniel hermann"
CREATE TABLE table_name_64 (nation VARCHAR, name VARCHAR)
What nation are carolina hermann / daniel hermann from?
SELECT rank FROM table_name_71 WHERE points = 141.48
CREATE TABLE table_name_71 (rank VARCHAR, points VARCHAR)
What is the rank associated with 141.48 points?
SELECT name FROM table_name_88 WHERE points = 124.51
CREATE TABLE table_name_88 (name VARCHAR, points VARCHAR)
What competitors are scored 124.51 points?
SELECT pat_robertson FROM table_name_64 WHERE george_hw_bush = "76%"
CREATE TABLE table_name_64 (pat_robertson VARCHAR, george_hw_bush VARCHAR)
At what percent was Pat Robertson when George H.W. Bush had 76%?
SELECT bob_dole FROM table_name_67 WHERE george_hw_bush = "81%" AND pat_robertson = "9%"
CREATE TABLE table_name_67 (bob_dole VARCHAR, george_hw_bush VARCHAR, pat_robertson VARCHAR)
When George H.W. Bush had 81%, and Pat Robertson had 9%, what did Bob Dole have?
SELECT pete_du_pont FROM table_name_13 WHERE pat_robertson = "16%"
CREATE TABLE table_name_13 (pete_du_pont VARCHAR, pat_robertson VARCHAR)
When Pat Robertson was at 16%, what did Pete du Pont have?
SELECT pat_robertson FROM table_name_12 WHERE bob_dole = "26%" AND george_hw_bush = "47%"
CREATE TABLE table_name_12 (pat_robertson VARCHAR, bob_dole VARCHAR, george_hw_bush VARCHAR)
When Bob Dole had 26%, and George H.W. Bush had 47%, what did Pat Robertson have?
SELECT pat_robertson FROM table_name_43 WHERE bob_dole = "26%" AND pete_du_pont = "0%"
CREATE TABLE table_name_43 (pat_robertson VARCHAR, bob_dole VARCHAR, pete_du_pont VARCHAR)
When Bob Dole had 26%, and Pete du Pont had 0%, what did Pat Robertson have?
SELECT george_hw_bush FROM table_name_43 WHERE pat_robertson = "19%" AND bob_dole = "26%"
CREATE TABLE table_name_43 (george_hw_bush VARCHAR, pat_robertson VARCHAR, bob_dole VARCHAR)
When Pat Robertson had 19%, and Bob Dole had 26%, what did George H.W. Bush have?
SELECT MIN(attendance) FROM table_name_59 WHERE date = "october 10, 1965"
CREATE TABLE table_name_59 (attendance INTEGER, date VARCHAR)
Date of october 10, 1965 had what lowest attendance?
SELECT date FROM table_name_95 WHERE opponent = "chicago bears"
CREATE TABLE table_name_95 (date VARCHAR, opponent VARCHAR)
Opponent of chicago bears involved what date?
SELECT performer_1 FROM table_name_91 WHERE performer_2 = "compilation 2"
CREATE TABLE table_name_91 (performer_1 VARCHAR, performer_2 VARCHAR)
Performer 2 of compilation 2 is what performer 1?
SELECT performer_4 FROM table_name_76 WHERE performer_1 = "greg proops" AND date = "25 august 1995"
CREATE TABLE table_name_76 (performer_4 VARCHAR, performer_1 VARCHAR, date VARCHAR)
Performer 1 of greg proops, and a Date of 25 august 1995 is what performer 4?
SELECT AVG(episode) FROM table_name_74 WHERE performer_1 = "greg proops" AND performer_3 = "ryan stiles" AND date = "25 august 1995"
CREATE TABLE table_name_74 (episode INTEGER, date VARCHAR, performer_1 VARCHAR, performer_3 VARCHAR)
Performer 1 of greg proops, and a Performer 3 of ryan stiles, and a Date of 25 august 1995 is which average episode?
SELECT performer_3 FROM table_name_79 WHERE performer_1 = "stephen frost" AND performer_2 = "josie lawrence" AND date = "15 september 1995"
CREATE TABLE table_name_79 (performer_3 VARCHAR, date VARCHAR, performer_1 VARCHAR, performer_2 VARCHAR)
Performer 1 of Stephen Frost, and a Performer 2 of Josie Lawrence, and a Date of 15 September 1995 is what performer 3?
SELECT mountains_classification FROM table_name_99 WHERE asian_team_classification = "seoul cycling team" AND winner = "alexandre usov"
CREATE TABLE table_name_99 (mountains_classification VARCHAR, asian_team_classification VARCHAR, winner VARCHAR)
WHich Mountains classification has an Asian team classification of seoul cycling team, and a Winner of alexandre usov?
SELECT asian_rider_classification FROM table_name_43 WHERE general_classification = "ruslan ivanov" AND stage = "9"
CREATE TABLE table_name_43 (asian_rider_classification VARCHAR, general_classification VARCHAR, stage VARCHAR)
WHo is the Asian rider classification that has ruslan ivanov on the Stage of 9?
SELECT general_classification FROM table_name_1 WHERE asian_rider_classification = "shinichi fukushima" AND winner = "jeremy hunt"
CREATE TABLE table_name_1 (general_classification VARCHAR, asian_rider_classification VARCHAR, winner VARCHAR)
WHich General classification has an Asian rider classification of shinichi fukushima, and a Winner of jeremy hunt?
SELECT stage FROM table_name_79 WHERE mountains_classification = "filippo savini"
CREATE TABLE table_name_79 (stage VARCHAR, mountains_classification VARCHAR)
Which Stage has a Mountains classification of filippo savini?
SELECT stage FROM table_name_21 WHERE winner = "jeremy hunt"
CREATE TABLE table_name_21 (stage VARCHAR, winner VARCHAR)
Which Stage has a Winner of jeremy hunt?
SELECT winning_team FROM table_name_42 WHERE site = "iowa city" AND date = "december 3, 2006"
CREATE TABLE table_name_42 (winning_team VARCHAR, site VARCHAR, date VARCHAR)
Which winning team has Iowa city as the site, and december 3, 2006 as the date?
SELECT site FROM table_name_25 WHERE date = "november 30, 2006"
CREATE TABLE table_name_25 (site VARCHAR, date VARCHAR)
What site has november 30, 2006 as the date?
SELECT winning_team FROM table_name_91 WHERE sport = "volleyball"
CREATE TABLE table_name_91 (winning_team VARCHAR, sport VARCHAR)
What winning team has volleyball as the sport?
SELECT COUNT(january) FROM table_name_83 WHERE opponent = "st. louis blues" AND game < 42
CREATE TABLE table_name_83 (january VARCHAR, opponent VARCHAR, game VARCHAR)
What is the total number in January when the St. Louis Blues had a game smaller than 42?
SELECT SUM(january) FROM table_name_70 WHERE record = "17-20-2" AND game < 39
CREATE TABLE table_name_70 (january INTEGER, record VARCHAR, game VARCHAR)
What is the January sum with the record of 17-20-2 with a game smaller than 39?
SELECT record FROM table_name_51 WHERE location = "boston garden" AND opponent = "new york knicks"
CREATE TABLE table_name_51 (record VARCHAR, location VARCHAR, opponent VARCHAR)
What was the record when the New York Knicks played at the Boston Garden?
SELECT score FROM table_name_94 WHERE record = "7-2"
CREATE TABLE table_name_94 (score VARCHAR, record VARCHAR)
When the record was 7-2, what was the score for the game?
SELECT date FROM table_name_66 WHERE record = "4-2"
CREATE TABLE table_name_66 (date VARCHAR, record VARCHAR)
On what date was the record 4-2?
SELECT MAX(females_rank) FROM table_name_2 WHERE females___percentage_ > 53 AND hiv_awareness__males_percentage_ < 89 AND state = "odisha"
CREATE TABLE table_name_2 (females_rank INTEGER, state VARCHAR, females___percentage_ VARCHAR, hiv_awareness__males_percentage_ VARCHAR)
Which Females Rank is the highest one that has Females (%) larger than 53, and an HIV awareness (males%) smaller than 89, and a State of odisha?
SELECT COUNT(females___percentage_) FROM table_name_1 WHERE females_rank < 21 AND state = "kerala" AND males_rank > 1
CREATE TABLE table_name_1 (females___percentage_ VARCHAR, males_rank VARCHAR, females_rank VARCHAR, state VARCHAR)
How many Females (%) have Females Rank smaller than 21, and a State of kerala, and Males Rank larger than 1?
SELECT COUNT(females___percentage_) FROM table_name_45 WHERE state = "karnataka" AND males_rank > 16
CREATE TABLE table_name_45 (females___percentage_ VARCHAR, state VARCHAR, males_rank VARCHAR)
How many Females (%) have a State of karnataka, and Males Rank larger than 16?
SELECT MAX(males_rank) FROM table_name_93 WHERE females___percentage_ < 40 AND females_rank < 22
CREATE TABLE table_name_93 (males_rank INTEGER, females___percentage_ VARCHAR, females_rank VARCHAR)
Which Males Rank is the highest one that has Females (%) smaller than 40, and Females Rank smaller than 22?
SELECT SUM(females___percentage_) FROM table_name_71 WHERE hiv_awareness__males_percentage_ > 92 AND females_rank > 2 AND males_rank < 3
CREATE TABLE table_name_71 (females___percentage_ INTEGER, males_rank VARCHAR, hiv_awareness__males_percentage_ VARCHAR, females_rank VARCHAR)
Which Females (%) has an HIV awareness (males%) larger than 92, and Females Rank larger than 2, and Males Rank smaller than 3?
SELECT SUM(total) FROM table_name_31 WHERE league_cup < 0
CREATE TABLE table_name_31 (total INTEGER, league_cup INTEGER)
League Cup smaller than 0 is what sum of the total?
SELECT MAX(league_cup) FROM table_name_27 WHERE championship > 3 AND fa_cup < 3 AND total < 6
CREATE TABLE table_name_27 (league_cup INTEGER, total VARCHAR, championship VARCHAR, fa_cup VARCHAR)
Championship larger than 3, and a FA Cup smaller than 3, and a Total smaller than 6 involves what highest league cup?
SELECT opponent FROM table_name_46 WHERE surface = "hard" AND date = "28 august 1993"
CREATE TABLE table_name_46 (opponent VARCHAR, surface VARCHAR, date VARCHAR)
Which Opponent has a Surface of hard on 28 august 1993?
SELECT outcome FROM table_name_70 WHERE date = "18 july 1993"
CREATE TABLE table_name_70 (outcome VARCHAR, date VARCHAR)
WHICH Outcome IS ON 18 july 1993?
SELECT outcome FROM table_name_68 WHERE opponent = "pascale paradis-mangon"
CREATE TABLE table_name_68 (outcome VARCHAR, opponent VARCHAR)
WHICH Outcome has aN Opponent of pascale paradis-mangon?
SELECT score FROM table_name_66 WHERE outcome = "winner" AND date = "4 november 1990"
CREATE TABLE table_name_66 (score VARCHAR, outcome VARCHAR, date VARCHAR)
Which Score has aN Outcome of winner on 4 november 1990?
SELECT tournament FROM table_name_18 WHERE opponent = "susan sloane"
CREATE TABLE table_name_18 (tournament VARCHAR, opponent VARCHAR)
Which Tournament has an Opponent of susan sloane?
SELECT tournament FROM table_name_92 WHERE opponent = "meike babel"
CREATE TABLE table_name_92 (tournament VARCHAR, opponent VARCHAR)
Which Tournament has an Opponent of meike babel?
SELECT SUM(game) FROM table_name_63 WHERE november = 29
CREATE TABLE table_name_63 (game INTEGER, november VARCHAR)
Which Game has a November of 29?
SELECT AVG(points) FROM table_name_40 WHERE record = "12–2–4–1" AND november > 22
CREATE TABLE table_name_40 (points INTEGER, record VARCHAR, november VARCHAR)
Which Points have a Record of 12–2–4–1, and a November larger than 22?
SELECT record FROM table_name_78 WHERE game = 19
CREATE TABLE table_name_78 (record VARCHAR, game VARCHAR)
Which Record has a Game of 19?
SELECT COUNT(november) FROM table_name_50 WHERE game > 14 AND opponent = "minnesota wild"
CREATE TABLE table_name_50 (november VARCHAR, game VARCHAR, opponent VARCHAR)
How many Novembers have a Game larger than 14, and an Opponent of minnesota wild?
SELECT MIN(november) FROM table_name_56 WHERE record = "12–2–4–1"
CREATE TABLE table_name_56 (november INTEGER, record VARCHAR)
Which November is the lowest one that has a Record of 12–2–4–1?
SELECT AVG(march) FROM table_name_70 WHERE record = "25–30–13" AND points < 63
CREATE TABLE table_name_70 (march INTEGER, record VARCHAR, points VARCHAR)
What day has a record of 25–30–13 and less than 63 points?
SELECT opponent FROM table_name_98 WHERE points = 63
CREATE TABLE table_name_98 (opponent VARCHAR, points VARCHAR)
Which opponent has 63 points?
SELECT alpha FROM table_name_34 WHERE ia64 = "discontinued 3.5-3.8 4.1-4.7"
CREATE TABLE table_name_34 (alpha VARCHAR, ia64 VARCHAR)
Which Alpha contains ia64 with discontinued 3.5-3.8 4.1-4.7?
SELECT s390x FROM table_name_21 WHERE ia64 = "yes" AND alpha = "no"
CREATE TABLE table_name_21 (s390x VARCHAR, ia64 VARCHAR, alpha VARCHAR)
Which s390x contains a yes ia64 and a no for alpha?
SELECT hppa FROM table_name_72 WHERE mips = "no" AND alpha = "no" AND ppc64 = "yes 3+"
CREATE TABLE table_name_72 (hppa VARCHAR, ppc64 VARCHAR, mips VARCHAR, alpha VARCHAR)
Which hppa contains a ppc64 of yes 3+, no for mips and no for alpha?
SELECT 1991 FROM table_name_77 WHERE 1993 = "a"
CREATE TABLE table_name_77 (Id VARCHAR)
Which 1991 has an A 1993 ?
SELECT 1992 FROM table_name_13 WHERE 1989 = "1–2"
CREATE TABLE table_name_13 (Id VARCHAR)
Which 992 has a 1–2 of 1989 ?
SELECT 1990 FROM table_name_3 WHERE 1993 = "1r"
CREATE TABLE table_name_3 (Id VARCHAR)
WHICH 1990 has a 1993 of 1r?
SELECT 1994 FROM table_name_35 WHERE 1998 = "0–1"
CREATE TABLE table_name_35 (Id VARCHAR)
Which 1994 has a 1998 of 0–1?
SELECT 1995 FROM table_name_86 WHERE 1993 = "3r"
CREATE TABLE table_name_86 (Id VARCHAR)
Which 1995 has a 1993 of 3r?
SELECT 1992 FROM table_name_59 WHERE 1996 = "sf" AND 1993 = "a"
CREATE TABLE table_name_59 (Id VARCHAR)
Which 1992 has a 1996 of sf and a 1993 of a?
SELECT school FROM table_name_20 WHERE pick > 89 AND position = "back" AND round = 16
CREATE TABLE table_name_20 (school VARCHAR, round VARCHAR, pick VARCHAR, position VARCHAR)
Which school picked a back in round 16, after pick 89?
SELECT visitor FROM table_name_29 WHERE home = "ottawa"
CREATE TABLE table_name_29 (visitor VARCHAR, home VARCHAR)
Who was the visitor in the game that had Ottawa as the home team?
SELECT score FROM table_name_90 WHERE decision = "niittymaki" AND home = "carolina"
CREATE TABLE table_name_90 (score VARCHAR, decision VARCHAR, home VARCHAR)
What was the score in the game where Carolina was the home team and Niittymaki received the decision?
SELECT date FROM table_name_30 WHERE loss = "johnson (9-8)"
CREATE TABLE table_name_30 (date VARCHAR, loss VARCHAR)
What was the date of the game that had a loss of Johnson (9-8)?
SELECT athlete FROM table_name_23 WHERE run_1 < 51.96 AND run_2 > 51.13 AND run_3 = 52.53
CREATE TABLE table_name_23 (athlete VARCHAR, run_3 VARCHAR, run_1 VARCHAR, run_2 VARCHAR)
Who had a Run 1 smaller than 51.96, a Run 2 larger than 51.13, and a Run 3 of 52.53?
SELECT athlete FROM table_name_67 WHERE run_2 = 50.67
CREATE TABLE table_name_67 (athlete VARCHAR, run_2 VARCHAR)
Who had a run 2 of 50.67?
SELECT MAX(run_2) FROM table_name_21 WHERE run_1 > 52.25 AND athlete = "john farrow"
CREATE TABLE table_name_21 (run_2 INTEGER, run_1 VARCHAR, athlete VARCHAR)
What was john farrow's run 2 associated with a run 1 of greater than 52.25?
SELECT score FROM table_name_83 WHERE opponent = "buffalo sabres"
CREATE TABLE table_name_83 (score VARCHAR, opponent VARCHAR)
What was the Score in the game against the Buffalo Sabres?
SELECT MIN(games) FROM table_name_9 WHERE rank < 4 AND name = "dalma ivΓ‘nyi"
CREATE TABLE table_name_9 (games INTEGER, rank VARCHAR, name VARCHAR)
Rank smaller than 4, and a Name of dalma ivΓ‘nyi involved which lowest game?
SELECT team FROM table_name_27 WHERE name = "sue bird"
CREATE TABLE table_name_27 (team VARCHAR, name VARCHAR)
Name of sue bird that involves what team?
SELECT episode FROM table_name_16 WHERE season < 25 AND directed_by = "bob anderson" AND production_code = "kabf16"
CREATE TABLE table_name_16 (episode VARCHAR, production_code VARCHAR, season VARCHAR, directed_by VARCHAR)
Which episode was directed by Bob Anderson with a production code of KABF16 and a season before than 25?
SELECT directed_by FROM table_name_77 WHERE season > 8 AND episode = "xvi"
CREATE TABLE table_name_77 (directed_by VARCHAR, season VARCHAR, episode VARCHAR)
Who was the director of the episode with a season after 8 and an episode of XVI?
SELECT MAX(rank) FROM table_name_68 WHERE date = "7 september 1996"
CREATE TABLE table_name_68 (rank INTEGER, date VARCHAR)
Date of 7 september 1996 includes which highest rank athlete?
SELECT location FROM table_name_84 WHERE time = 10.82
CREATE TABLE table_name_84 (location VARCHAR, time VARCHAR)
Time of 10.82 has what location?
SELECT athlete FROM table_name_92 WHERE date = "10 july 2009"
CREATE TABLE table_name_92 (athlete VARCHAR, date VARCHAR)
Date of 10 july 2009 includes what athlete?
SELECT location FROM table_name_37 WHERE rank < 5 AND time > 10.7 AND date = "10 july 2009"
CREATE TABLE table_name_37 (location VARCHAR, date VARCHAR, rank VARCHAR, time VARCHAR)
Rank smaller than 5, and a Time larger than 10.7, and a Date of 10 july 2009 has what location?
SELECT MAX(dcsf_number) FROM table_name_22 WHERE faith = "rc" AND opened > 1966
CREATE TABLE table_name_22 (dcsf_number INTEGER, faith VARCHAR, opened VARCHAR)
Faith of rc, and a Opened larger than 1966 which has the highest DCSF number?
SELECT type FROM table_name_79 WHERE faith = "–" AND name = "greenway"
CREATE TABLE table_name_79 (type VARCHAR, faith VARCHAR, name VARCHAR)
Faith of –, and a Name of greenway has what type?
SELECT opponent FROM table_name_47 WHERE venue = "launceston cricket club ground, launceston" AND season = "1853/54"
CREATE TABLE table_name_47 (opponent VARCHAR, venue VARCHAR, season VARCHAR)
Who was the opponent that played at Launceston Cricket Club Ground, launceston during the season of 1853/54?
SELECT rank FROM table_name_92 WHERE season = "2006/07"
CREATE TABLE table_name_92 (rank VARCHAR, season VARCHAR)
What was the rank of the team during season 2006/07?
SELECT venue FROM table_name_12 WHERE runs = "55"
CREATE TABLE table_name_12 (venue VARCHAR, runs VARCHAR)
What was the venue where there were 55 runs?
SELECT venue FROM table_name_97 WHERE runs = "62"
CREATE TABLE table_name_97 (venue VARCHAR, runs VARCHAR)
What was the venue where there were 62 runs?
SELECT driver FROM table_name_82 WHERE laps < 53 AND time_retired = "accident"
CREATE TABLE table_name_82 (driver VARCHAR, laps VARCHAR, time_retired VARCHAR)
Which driver had an accident and laps smaller than 53?
SELECT language FROM table_name_85 WHERE publication_range = "1955–1999"
CREATE TABLE table_name_85 (language VARCHAR, publication_range VARCHAR)
What language has a publication range from 1955–1999?
SELECT status FROM table_name_62 WHERE issn = "0149-1830"
CREATE TABLE table_name_62 (status VARCHAR, issn VARCHAR)
What is the status for a journal with the ISSN of 0149-1830?
SELECT language FROM table_name_65 WHERE country = "france" AND publication_range = "1992–2003"
CREATE TABLE table_name_65 (language VARCHAR, country VARCHAR, publication_range VARCHAR)
What is the language with a France publication range of 1992–2003?