answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT ground FROM table_name_88 WHERE home = "etobicoke kangaroos"
What ground has etobicoke kangaroos as the home?
CREATE TABLE table_name_88 (ground VARCHAR, home VARCHAR)
SELECT notes FROM table_name_89 WHERE app_l_c_e_ = "13 (7/2/4)"
What is Notes, when App(L/C/E) is 13 (7/2/4)?
CREATE TABLE table_name_89 (notes VARCHAR, app_l_c_e_ VARCHAR)
SELECT MAX(no) FROM table_15621965_8 WHERE player = "Al Harrington"
What jersey number did Al Harrington wear
CREATE TABLE table_15621965_8 (no INTEGER, player VARCHAR)
SELECT player FROM table_name_21 WHERE total < 11 AND tally = "0-9"
Which Player has a Total smaller than 11, and a Tally of 0-9?
CREATE TABLE table_name_21 (player VARCHAR, total VARCHAR, tally VARCHAR)
SELECT SUM(points) FROM table_name_2 WHERE opponent = "@ atlanta thrashers" AND game < 28
Which Points have an Opponent of @ atlanta thrashers, and a Game smaller than 28?
CREATE TABLE table_name_2 (points INTEGER, opponent VARCHAR, game VARCHAR)
SELECT COUNT(original_air_date) FROM table_13336122_7 WHERE us_viewers__million_ = "0.67"
How many episodes were seen by 0.67 million US viewers on their original air dates?
CREATE TABLE table_13336122_7 (original_air_date VARCHAR, us_viewers__million_ VARCHAR)
SELECT T1.first_name, T2.name FROM Owners AS T1 JOIN Dogs AS T2 ON T1.owner_id = T2.owner_id
List pairs of the owner's first name and the dogs's name.
CREATE TABLE Dogs (name VARCHAR, owner_id VARCHAR); CREATE TABLE Owners (first_name VARCHAR, owner_id VARCHAR)
SELECT skip FROM table_name_74 WHERE alternate = "laurens van der windt"
Who is the skip of the nation with Laurens van der Windt as the alternate?
CREATE TABLE table_name_74 (skip VARCHAR, alternate VARCHAR)
SELECT COUNT(lost) FROM table_name_82 WHERE goals_scored < 22 AND goals_conceded > 27
Name the total number of lost when goals scored is less than 22 and goals conceded is more than 27
CREATE TABLE table_name_82 (lost VARCHAR, goals_scored VARCHAR, goals_conceded VARCHAR)
SELECT T3.Name FROM affected_region AS T1 JOIN region AS T2 ON T1.region_id = T2.region_id JOIN storm AS T3 ON T1.storm_id = T3.storm_id WHERE T2.Region_name = 'Afghanistan' INTERSECT SELECT T3.Name FROM affected_region AS T1 JOIN region AS T2 ON T1.region_id = T2.region_id JOIN storm AS T3 ON T1.storm_id = T3.storm_id WHERE T2.Region_name = 'Albania'
Find the name of the storm that affected both Afghanistan and Albania regions.
CREATE TABLE storm (Name VARCHAR, storm_id VARCHAR); CREATE TABLE affected_region (region_id VARCHAR, storm_id VARCHAR); CREATE TABLE region (region_id VARCHAR, Region_name VARCHAR)
SELECT COUNT(rank) FROM table_name_88 WHERE wins < 22
What rank has less than 22 wins
CREATE TABLE table_name_88 (rank VARCHAR, wins INTEGER)
SELECT nickname FROM table_16432543_3 WHERE established = 2002
What was the nickname Established in 2002?
CREATE TABLE table_16432543_3 (nickname VARCHAR, established VARCHAR)
SELECT visa_3 FROM table_name_7 WHERE visa_1 = "michael mcglinchey"
Which Visa 3 has a Visa 1 of michael mcglinchey?
CREATE TABLE table_name_7 (visa_3 VARCHAR, visa_1 VARCHAR)
SELECT re_entered_service__p_ FROM table_name_22 WHERE entered_service__t_ = "18 june 1956" AND pre_conversion = "t328"
What date did the T328 that entered service on 18 June 1956 re-enter service?
CREATE TABLE table_name_22 (re_entered_service__p_ VARCHAR, entered_service__t_ VARCHAR, pre_conversion VARCHAR)
SELECT COUNT(arena__capacity_) FROM table_19526911_1 WHERE head_coach = "Yuriy Korotkevich"
What is the arena capacity of the arena in the town whose head coach is Yuriy Korotkevich?
CREATE TABLE table_19526911_1 (arena__capacity_ VARCHAR, head_coach VARCHAR)
SELECT COUNT(native_american) FROM table_1333612_1 WHERE whites = "1.0%"
how many native american with whites being 1.0%
CREATE TABLE table_1333612_1 (native_american VARCHAR, whites VARCHAR)
SELECT MIN(first_title) FROM table_name_13 WHERE all_time > 1 AND country = "united states (usa)" AND amateur_era > 17
What is the lowest First Title, when All-Time is greater than 1, when Country is "United States (USA)", and when Amateur Era is greater than 17?
CREATE TABLE table_name_13 (first_title INTEGER, amateur_era VARCHAR, all_time VARCHAR, country VARCHAR)
SELECT score FROM table_name_18 WHERE away_team = "newcastle benfield"
What is Score, when Away Team is "Newcastle Benfield"?
CREATE TABLE table_name_18 (score VARCHAR, away_team VARCHAR)
SELECT term_began FROM table_224672_2 WHERE elected = "N/A"
When did the term began when the date of election is N/A?
CREATE TABLE table_224672_2 (term_began VARCHAR, elected VARCHAR)
SELECT drawn FROM table_name_31 WHERE try_bonus = "16"
What is the drawn that has 16 as the trys bonus?
CREATE TABLE table_name_31 (drawn VARCHAR, try_bonus VARCHAR)
SELECT AVG(draw) FROM table_name_14 WHERE lost < 4 AND team = "gwardia bydgoszcz" AND match > 5
What is the average draw that has a lost less than 4, gwardia bydgoszcz as the team, with a match greater than 5?
CREATE TABLE table_name_14 (draw INTEGER, match VARCHAR, lost VARCHAR, team VARCHAR)
SELECT title FROM table_name_23 WHERE presentation_of_credentials = "april 24, 1884"
Name the title with presentation of credentials of april 24, 1884
CREATE TABLE table_name_23 (title VARCHAR, presentation_of_credentials VARCHAR)
SELECT score FROM table_27715173_12 WHERE series = "2–3"
What was the score for series 2–3?
CREATE TABLE table_27715173_12 (score VARCHAR, series VARCHAR)
SELECT attendance FROM table_name_85 WHERE opponent = "los angeles raiders"
What was the Attendance of the game against the Los Angeles Raiders?
CREATE TABLE table_name_85 (attendance VARCHAR, opponent VARCHAR)
SELECT AVG(caps) FROM table_name_75 WHERE club_province = "meralomas" AND position = "centre"
What is the average number of caps for Meralomas with positions of centre?
CREATE TABLE table_name_75 (caps INTEGER, club_province VARCHAR, position VARCHAR)
SELECT relative_value FROM table_name_72 WHERE jyutping = "daam3"
what's the relative value that contains a jyutping of daam3?
CREATE TABLE table_name_72 (relative_value VARCHAR, jyutping VARCHAR)
SELECT home_team FROM table_name_32 WHERE venue = "windy hill"
Which home team has a venue of windy hill?
CREATE TABLE table_name_32 (home_team VARCHAR, venue VARCHAR)
SELECT date FROM table_name_10 WHERE circuit = "snetterton" AND fastest_lap = "riki christodoulou"
What date was the circuit, snetterton, when riki christodoulou had the fastest lap?
CREATE TABLE table_name_10 (date VARCHAR, circuit VARCHAR, fastest_lap VARCHAR)
SELECT gap_from_thailand_as_of_2012__times_ FROM table_30133_3 WHERE gap_from_thailand_as_of_1980__times_ = "0.29"
What is the gap from Thailand as of 2012 for the country whose 1980 gap was 0.29?
CREATE TABLE table_30133_3 (gap_from_thailand_as_of_2012__times_ VARCHAR, gap_from_thailand_as_of_1980__times_ VARCHAR)
SELECT wrestler FROM table_name_6 WHERE elimination = "1"
Who's the wrestler with an elimination of 1?
CREATE TABLE table_name_6 (wrestler VARCHAR, elimination VARCHAR)
SELECT T3.Player_name, T2.coach_name FROM player_coach AS T1 JOIN coach AS T2 ON T1.Coach_ID = T2.Coach_ID JOIN player AS T3 ON T1.Player_ID = T3.Player_ID
Show the names of players and names of their coaches.
CREATE TABLE player (Player_name VARCHAR, Player_ID VARCHAR); CREATE TABLE coach (coach_name VARCHAR, Coach_ID VARCHAR); CREATE TABLE player_coach (Coach_ID VARCHAR, Player_ID VARCHAR)
SELECT to_par FROM table_name_77 WHERE country = "united states" AND place = "t8" AND player = "tommy valentine"
What to par has The United States as the country, t8 as the place, and tommy valentine as the player?
CREATE TABLE table_name_77 (to_par VARCHAR, player VARCHAR, country VARCHAR, place VARCHAR)
SELECT movie_album FROM table_2528382_1 WHERE song = "Dil De De Nahin Nahin Dil Le Le"
In which album can Dil De De Nahin Nahin Dil Le Le be found?
CREATE TABLE table_2528382_1 (movie_album VARCHAR, song VARCHAR)
SELECT frequency FROM table_name_14 WHERE release_price___usd__ = "$383" AND sspec_number = "sr15f(c0)"
What is the frequency of the processor released at $383, with a sSpec of sr15f(c0)?
CREATE TABLE table_name_14 (frequency VARCHAR, release_price___usd__ VARCHAR, sspec_number VARCHAR)
SELECT MAX(season) FROM table_name_72 WHERE country = "uzbekistan" AND team = "fc pakhtakor tashkent" AND apps > 6
In which season did Fc Pakhtakor Tashkent represent the country of Uzbekistan with more than 6 apps?
CREATE TABLE table_name_72 (season INTEGER, apps VARCHAR, country VARCHAR, team VARCHAR)
SELECT COUNT(stage) FROM table_15294880_2 WHERE winner = "Alberto Contador" AND points_classification = "Alberto Contador"
How many stages were there where the winner and the points classification were Alberto Contador?
CREATE TABLE table_15294880_2 (stage VARCHAR, winner VARCHAR, points_classification VARCHAR)
SELECT t1.name, t1.sex FROM people AS t1 JOIN candidate AS t2 ON t1.people_id = t2.people_id ORDER BY t2.support_rate DESC LIMIT 1
Find the name and gender of the candidate who got the highest support rate.
CREATE TABLE candidate (people_id VARCHAR, support_rate VARCHAR); CREATE TABLE people (name VARCHAR, sex VARCHAR, people_id VARCHAR)
SELECT score FROM table_name_81 WHERE game = 2
When the game is listed as 2, what is the score?
CREATE TABLE table_name_81 (score VARCHAR, game VARCHAR)
SELECT publisher FROM table_16907214_1 WHERE hardcover = "ISBN 1-937007-44-8"
Who pubilshed isbn 1-937007-44-8?
CREATE TABLE table_16907214_1 (publisher VARCHAR, hardcover VARCHAR)
SELECT date FROM table_name_31 WHERE venue = "mcg"
What is the date of the game when the venue is MCG?
CREATE TABLE table_name_31 (date VARCHAR, venue VARCHAR)
SELECT college FROM table_name_22 WHERE pick__number > 30 AND position = "ol"
Which College has a Pick # larger than 30, and a Position of ol?
CREATE TABLE table_name_22 (college VARCHAR, pick__number VARCHAR, position VARCHAR)
SELECT COUNT(military_deaths) FROM table_name_41 WHERE military_and_or_civilian_wounded = "78" AND total_deaths > 27
What is the total number of military deaths when there are 78 military and/or civilian wounded and more than 27 total deaths?
CREATE TABLE table_name_41 (military_deaths VARCHAR, military_and_or_civilian_wounded VARCHAR, total_deaths VARCHAR)
SELECT name FROM table_name_90 WHERE stage = "ss5"
What is the Name of the SS5 Stage?
CREATE TABLE table_name_90 (name VARCHAR, stage VARCHAR)
SELECT set_3 FROM table_name_1 WHERE set_1 = "14–25"
What was the score for set 3 when set 1 was 14–25?
CREATE TABLE table_name_1 (set_3 VARCHAR, set_1 VARCHAR)
SELECT opponent FROM table_name_23 WHERE edition = "2003 davis cup europe/africa group ii"
Who was the opponent for the 2003 davis cup europe/africa group ii?
CREATE TABLE table_name_23 (opponent VARCHAR, edition VARCHAR)
SELECT DISTINCT address_type_code FROM customer_addresses
What are the distinct address type codes for all customer addresses?
CREATE TABLE customer_addresses (address_type_code VARCHAR)
SELECT college_junior_club_team FROM table_1473672_8 WHERE position = "Left Wing"
Name the college/junior/club team for left wing
CREATE TABLE table_1473672_8 (college_junior_club_team VARCHAR, position VARCHAR)
SELECT points FROM table_name_92 WHERE tries_against = "90"
When the tries against is 90 how many points are there?
CREATE TABLE table_name_92 (points VARCHAR, tries_against VARCHAR)
SELECT calendar FROM table_name_95 WHERE user_selectable_themes = "user-selectable themes"
Which Calendar has a User-selectable themes of user-selectable themes?
CREATE TABLE table_name_95 (calendar VARCHAR, user_selectable_themes VARCHAR)
SELECT COUNT(worst_score) FROM table_name_72 WHERE best_score = 8.8 AND average > 6.2
WHAT IS THE WORST SCORE WHEN THE BEST SCORE WAS 8.8 AND AVERAGE WAS LARGER THAN 6.2?
CREATE TABLE table_name_72 (worst_score VARCHAR, best_score VARCHAR, average VARCHAR)
SELECT COUNT(year_of_intro) FROM table_name_87 WHERE country_of_origin = "soviet union" AND type = "reusable" AND primary_cartridge = "40mm" AND name__designation = "rpg-29"
What is the total number of Year of Intro(s), when Country of Origin is Soviet Union, when Type is Reusable, when Primary Cartridge is 40mm, and when Name/ Designation is RPG-29?
CREATE TABLE table_name_87 (year_of_intro VARCHAR, name__designation VARCHAR, primary_cartridge VARCHAR, country_of_origin VARCHAR, type VARCHAR)
SELECT work FROM table_name_36 WHERE result = "nominated" AND award = "contigo award" AND year < 2002
Which Work has a Result of nominated, and an Award of contigo award, and a Year smaller than 2002?
CREATE TABLE table_name_36 (work VARCHAR, year VARCHAR, result VARCHAR, award VARCHAR)
SELECT long FROM table_name_97 WHERE avg_g = "redshirt"
Which Long has redshirt for its Avg/G?
CREATE TABLE table_name_97 (long VARCHAR, avg_g VARCHAR)
SELECT premises_type, COUNT(*) FROM premises GROUP BY premises_type
Show each premise type and the number of premises in that type.
CREATE TABLE premises (premises_type VARCHAR)
SELECT frequency FROM table_name_78 WHERE format = "first nations community"
What frequency is First Nations Community?
CREATE TABLE table_name_78 (frequency VARCHAR, format VARCHAR)
SELECT film_title_used_in_nomination FROM table_name_16 WHERE country = "sweden"
What was the film title nominated from the Sweden?
CREATE TABLE table_name_16 (film_title_used_in_nomination VARCHAR, country VARCHAR)
SELECT district FROM table_1805191_10 WHERE first_elected = 2000
In which district is the first elected 2000?
CREATE TABLE table_1805191_10 (district VARCHAR, first_elected VARCHAR)
SELECT MIN(rnd) FROM table_22673872_1 WHERE winning_driver = "Al Unser" AND track = "Wisconsin State Fair Park Speedway"
In what round did Al Unser win at Wisconsin State Fair Park Speedway?
CREATE TABLE table_22673872_1 (rnd INTEGER, winning_driver VARCHAR, track VARCHAR)
SELECT romanised_name FROM table_17964087_2 WHERE prior_occupation = "Assistant Police Commissioner (ret'd)"
For the prior occupation listed as assistant police commissioner (ret'd) what are the entire list of romanised name.
CREATE TABLE table_17964087_2 (romanised_name VARCHAR, prior_occupation VARCHAR)
SELECT car_make FROM table_27514362_7 WHERE driver = "Sterling Marlin"
What is the car make for Sterling Marlin?
CREATE TABLE table_27514362_7 (car_make VARCHAR, driver VARCHAR)
SELECT AVG(total) FROM table_name_64 WHERE rank < 5 AND bronze < 7
What is the average medal total when the rank is less than 5 and less than 7 bronze medals were won?
CREATE TABLE table_name_64 (total INTEGER, rank VARCHAR, bronze VARCHAR)
SELECT AVG(silver) FROM table_name_86 WHERE bronze < 0
What's the average number of silver medals when bronze is less than 0?
CREATE TABLE table_name_86 (silver INTEGER, bronze INTEGER)
SELECT SUM(year) FROM table_name_68 WHERE start < 30
Name the sum of year when start is less than 30
CREATE TABLE table_name_68 (year INTEGER, start INTEGER)
SELECT number_of_households FROM table_1350350_2 WHERE per_capita_income = "$16,820"
what's the number of households with per capita income being $16,820
CREATE TABLE table_1350350_2 (number_of_households VARCHAR, per_capita_income VARCHAR)
SELECT song FROM table_name_14 WHERE year < 1994 AND uk_chart = "42"
Which Song of the Year was 42 on the UK charts prior to 1994?
CREATE TABLE table_name_14 (song VARCHAR, year VARCHAR, uk_chart VARCHAR)
SELECT MAX(flags) FROM table_name_90 WHERE wins = 473 AND losses < 633
What's the most flags that had 473 wins and less than 633 losses?
CREATE TABLE table_name_90 (flags INTEGER, wins VARCHAR, losses VARCHAR)
SELECT home_team AS score FROM table_name_47 WHERE home_team = "geelong"
Which Home team score has a Home team of geelong?
CREATE TABLE table_name_47 (home_team VARCHAR)
SELECT branding FROM table_name_88 WHERE frequency = "680 khz"
Tell me the branding for frequency of 680 khz
CREATE TABLE table_name_88 (branding VARCHAR, frequency VARCHAR)
SELECT home_town FROM table_name_32 WHERE graduated > 2010 AND college_prior = "michigan"
Where was the player from who graduated from Michigan after 2010?
CREATE TABLE table_name_32 (home_town VARCHAR, graduated VARCHAR, college_prior VARCHAR)
SELECT venue FROM table_name_72 WHERE competition = "friendly" AND date = "17 december 1967"
Where was the friendly competition on 17 December 1967 played at?
CREATE TABLE table_name_72 (venue VARCHAR, competition VARCHAR, date VARCHAR)
SELECT AVG(gold) FROM table_name_84 WHERE nation = "india" AND bronze < 0
Which Gold has a Nation of india, and a Bronze smaller than 0?
CREATE TABLE table_name_84 (gold INTEGER, nation VARCHAR, bronze VARCHAR)
SELECT outcome FROM table_name_70 WHERE date = "6 october 2013"
Name the outcome on 6 october 2013
CREATE TABLE table_name_70 (outcome VARCHAR, date VARCHAR)
SELECT time_retired FROM table_name_36 WHERE grid < 13 AND constructor = "alfa romeo" AND laps > 12
what is the time/retired when the grid is less than 13, the constructor is alfa romeo and the laps is more than 12?
CREATE TABLE table_name_36 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR, constructor VARCHAR)
SELECT result FROM table_name_4 WHERE date = "july 16, 1992"
What was the result on july 16, 1992?
CREATE TABLE table_name_4 (result VARCHAR, date VARCHAR)
SELECT name FROM table_23963781_2 WHERE goals = 1 AND position = "FW"
who has the 1 goal and the position is fw?
CREATE TABLE table_23963781_2 (name VARCHAR, goals VARCHAR, position VARCHAR)
SELECT score FROM table_name_32 WHERE decision = "smith" AND visitor = "colorado"
What is the score of Colorado when they were a visitor and had a Smith decision?
CREATE TABLE table_name_32 (score VARCHAR, decision VARCHAR, visitor VARCHAR)
SELECT report FROM table_name_16 WHERE name = "cuban race"
Name the report with cuban race
CREATE TABLE table_name_16 (report VARCHAR, name VARCHAR)
SELECT circuit FROM table_name_26 WHERE series = "astc round 4"
What is Circuit, when Series is ASTC Round 4?
CREATE TABLE table_name_26 (circuit VARCHAR, series VARCHAR)
SELECT round FROM table_name_19 WHERE opponent = "wakefield trinity wildcats u21" AND venue = "belle vue"
what round saw wakefield trinity wildcats u21 as the opponenet at belle vue?
CREATE TABLE table_name_19 (round VARCHAR, opponent VARCHAR, venue VARCHAR)
SELECT MAX(population) FROM table_name_99 WHERE density__inhabitants_km_2__ > 2805.8 AND rank = "1st" AND altitude__mslm_ < 122
Which Population is the highest one that has a Density (inhabitants/km 2) larger than 2805.8, and a Rank of 1st, and an Altitude (mslm) smaller than 122?
CREATE TABLE table_name_99 (population INTEGER, altitude__mslm_ VARCHAR, density__inhabitants_km_2__ VARCHAR, rank VARCHAR)
SELECT SUM(year) FROM table_name_89 WHERE tournaments_played < 2 AND cuts_made = 1 AND earnings___$__ < 10 OFFSET 547
what is the year when tournaments played is less than 2, cuts made is 1 and earnings ($) is less than 10,547?
CREATE TABLE table_name_89 (year INTEGER, earnings___$__ VARCHAR, tournaments_played VARCHAR, cuts_made VARCHAR)
SELECT package_option FROM table_15887683_3 WHERE television_service = "Cartello promozionale Sky HD"
What packages offer the Cartello Promozionale Sky HD service?
CREATE TABLE table_15887683_3 (package_option VARCHAR, television_service VARCHAR)
SELECT SUM(diameter__km_) FROM table_name_42 WHERE longitude = "105.0e" AND year_named < 2003
What's the diameter when longitude is 105.0e before 2003?
CREATE TABLE table_name_42 (diameter__km_ INTEGER, longitude VARCHAR, year_named VARCHAR)
SELECT AVG(points) FROM table_name_16 WHERE entrant = "scuderia scribante" AND chassis = "brabham bt11" AND year < 1968
What are the average points of Scuderia Scribante with a Brabham bt11 chassis before 1968?
CREATE TABLE table_name_16 (points INTEGER, year VARCHAR, entrant VARCHAR, chassis VARCHAR)
SELECT set_2 FROM table_name_38 WHERE set_1 = "25–20"
Set 1 of 25–20, what was Set 2?
CREATE TABLE table_name_38 (set_2 VARCHAR, set_1 VARCHAR)
SELECT poles FROM table_20016339_1 WHERE motorcycle = "Kalex"
What's the number of poles in the season where the team had a Kalex motorcycle?
CREATE TABLE table_20016339_1 (poles VARCHAR, motorcycle VARCHAR)
SELECT original_air_date FROM table_23279434_1 WHERE directed_by = "Jeremy Kagan"
When did Jeremy Kagan's episode first air?
CREATE TABLE table_23279434_1 (original_air_date VARCHAR, directed_by VARCHAR)
SELECT AVG(amount_due) FROM payments
What is the average amount due for all the payments?
CREATE TABLE payments (amount_due INTEGER)
SELECT record FROM table_name_9 WHERE date = "april 9, 2008"
What was the record for the game on April 9, 2008?
CREATE TABLE table_name_9 (record VARCHAR, date VARCHAR)
SELECT position FROM table_1213511_3 WHERE nhl_team = "Philadelphia Flyers"
What is the position listed for the team the Philadelphia Flyers?
CREATE TABLE table_1213511_3 (position VARCHAR, nhl_team VARCHAR)
SELECT COUNT(games) AS ↑ FROM table_name_58 WHERE position = "wr" AND number > 17
What is the games number when the Position was wr, and a Number larger than 17?
CREATE TABLE table_name_58 (games VARCHAR, position VARCHAR, number VARCHAR)
SELECT league_cup_apps FROM table_name_54 WHERE total_goals < 2 AND total_apps = "12"
what is the league cup apps when the total goals is less than 2 and the total apps is 12?
CREATE TABLE table_name_54 (league_cup_apps VARCHAR, total_goals VARCHAR, total_apps VARCHAR)
SELECT segment_d FROM table_15187735_3 WHERE segment_c = "Chicken"
Name the segment d for chicken
CREATE TABLE table_15187735_3 (segment_d VARCHAR, segment_c VARCHAR)
SELECT away_team FROM table_name_99 WHERE venue = "kardinia park"
Who was the away team at the game at Kardinia Park?
CREATE TABLE table_name_99 (away_team VARCHAR, venue VARCHAR)
SELECT tries_against FROM table_name_19 WHERE drawn = "1" AND points = "41"
How many tries against did the club with 1 drawn and 41 points have?
CREATE TABLE table_name_19 (tries_against VARCHAR, drawn VARCHAR, points VARCHAR)
SELECT written_by FROM table_28037619_2 WHERE us_viewers__million_ = "6.05"
Who wrote the episode that had 6.05 million U.s. viewers?
CREATE TABLE table_28037619_2 (written_by VARCHAR, us_viewers__million_ VARCHAR)
SELECT MAX(seats) FROM table_name_83 WHERE votes = 244 OFFSET 867
Which highest number of Seats has votes of 244,867?
CREATE TABLE table_name_83 (seats INTEGER, votes VARCHAR)
SELECT captain FROM table_name_79 WHERE shirt_sponsor = "one2one"
One2one is the shirt sponsor for the captain of what team?
CREATE TABLE table_name_79 (captain VARCHAR, shirt_sponsor VARCHAR)
SELECT song FROM table_name_46 WHERE points > 38 AND artist = "morena camilleri"
What song is it that artist morena camilleri does and has more than 38 points
CREATE TABLE table_name_46 (song VARCHAR, points VARCHAR, artist VARCHAR)
SELECT branding FROM table_2610582_2 WHERE callsign = "DWEC-TV"
The callsign DWEC-TV has what branding?
CREATE TABLE table_2610582_2 (branding VARCHAR, callsign VARCHAR)