training_input
stringlengths
118
1.06k
###context:CREATE TABLE table_name_2 (lane VARCHAR, name VARCHAR) ###human: What lane was Emily Seebohm in? ###assistant: SELECT COUNT(lane) FROM table_name_2 WHERE name = "emily seebohm"
###context:CREATE TABLE table_name_50 (quantity VARCHAR, railway_number_s_ VARCHAR) ###human: What is the quantity for railway 263? ###assistant: SELECT quantity FROM table_name_50 WHERE railway_number_s_ = "263"
###context:CREATE TABLE table_name_35 (year_s__of_manufacture VARCHAR, railway_number_s_ VARCHAR) ###human: What are the year(s) of manufacture for railway number(s) 26 (ii) …63 (ii) , 188–193? ###assistant: SELECT year_s__of_manufacture FROM table_name_35 WHERE railway_number_s_ = "26 (ii) …63 (ii) , 188–193"
###context:CREATE TABLE table_name_47 (railway_number_s_ VARCHAR, year_s__of_manufacture VARCHAR) ###human: What are the railway number(s) for year(s) of manufacture of 1905–1906? ###assistant: SELECT railway_number_s_ FROM table_name_47 WHERE year_s__of_manufacture = "1905–1906"
###context:CREATE TABLE table_name_69 (player VARCHAR, position VARCHAR, team VARCHAR) ###human: Who is the rb player from team oakland? ###assistant: SELECT player FROM table_name_69 WHERE position = "rb" AND team = "oakland"
###context:CREATE TABLE table_name_93 (team VARCHAR, college VARCHAR) ###human: What is the team of the player from ohio state? ###assistant: SELECT team FROM table_name_93 WHERE college = "ohio state"
###context:CREATE TABLE table_name_38 (rank INTEGER, country VARCHAR, time VARCHAR) ###human: What is the highest rank in Uzbekistan with a time larger than 11.44? ###assistant: SELECT MAX(rank) FROM table_name_38 WHERE country = "uzbekistan" AND time > 11.44
###context:CREATE TABLE table_name_54 (heat INTEGER, rank VARCHAR) ###human: What is the average heat ranked at 30? ###assistant: SELECT AVG(heat) FROM table_name_54 WHERE rank = 30
###context:CREATE TABLE table_name_29 (time INTEGER, rank VARCHAR) ###human: What is the average time in a rank of 61? ###assistant: SELECT AVG(time) FROM table_name_29 WHERE rank = 61
###context:CREATE TABLE table_name_97 (capacity VARCHAR, vehicle VARCHAR) ###human: How much Capacity has a Vehicle of 2003 holden commodore ute? ###assistant: SELECT COUNT(capacity) FROM table_name_97 WHERE vehicle = "2003 holden commodore ute"
###context:CREATE TABLE table_name_37 (navigator VARCHAR, total_time VARCHAR) ###human: Which Navigator has a Total Time of 08:29? ###assistant: SELECT navigator FROM table_name_37 WHERE total_time = "08:29"
###context:CREATE TABLE table_name_61 (capacity INTEGER, class VARCHAR, vehicle VARCHAR) ###human: Which Capacity has a Class of cm22, and a Vehicle of 1999 subaru impreza wrx sti? ###assistant: SELECT MIN(capacity) FROM table_name_61 WHERE class = "cm22" AND vehicle = "1999 subaru impreza wrx sti"
###context:CREATE TABLE table_name_21 (driver VARCHAR, capacity VARCHAR, total_time VARCHAR) ###human: Which Driver has a Capacity smaller than 5700, and a Total Time of 08:29? ###assistant: SELECT driver FROM table_name_21 WHERE capacity < 5700 AND total_time = "08:29"
###context:CREATE TABLE table_name_43 (losses VARCHAR, byes INTEGER) ###human: What is the total number of losses for teams with more than 0 byes? ###assistant: SELECT COUNT(losses) FROM table_name_43 WHERE byes > 0
###context:CREATE TABLE table_name_67 (draws INTEGER, against VARCHAR, losses VARCHAR) ###human: What is the sum of draws for teams with against of 1731 and under 10 losses? ###assistant: SELECT SUM(draws) FROM table_name_67 WHERE against = 1731 AND losses < 10
###context:CREATE TABLE table_name_35 (release_date VARCHAR, director VARCHAR, title VARCHAR) ###human: When was Tree Cornered Tweety, directed by Friz Freleng, released? ###assistant: SELECT release_date FROM table_name_35 WHERE director = "friz freleng" AND title = "tree cornered tweety"
###context:CREATE TABLE table_name_68 (release_date VARCHAR, title VARCHAR) ###human: When was Too Hop to Handle released? ###assistant: SELECT release_date FROM table_name_68 WHERE title = "too hop to handle"
###context:CREATE TABLE table_name_85 (series VARCHAR, title VARCHAR) ###human: From which series is the title Barbary Coast Bunny? ###assistant: SELECT series FROM table_name_85 WHERE title = "barbary coast bunny"
###context:CREATE TABLE table_name_76 (lyrics__l____music__m_ VARCHAR, place VARCHAR) ###human: Who did the Lyrics (l) / Music (m) for the song in 23 Place? ###assistant: SELECT lyrics__l____music__m_ FROM table_name_76 WHERE place = "23"
###context:CREATE TABLE table_name_11 (votes VARCHAR, artist VARCHAR) ###human: What are the Votes for the Song by Artist Filipa Batista? ###assistant: SELECT votes FROM table_name_11 WHERE artist = "filipa batista"
###context:CREATE TABLE table_name_6 (votes VARCHAR, place VARCHAR) ###human: What is the Votes for the Song in Place 9? ###assistant: SELECT votes FROM table_name_6 WHERE place = "9"
###context:CREATE TABLE table_name_28 (artist VARCHAR, place VARCHAR) ###human: What is the Artist of the Song with a Place of withdrawn? ###assistant: SELECT artist FROM table_name_28 WHERE place = "withdrawn"
###context:CREATE TABLE table_name_91 (week VARCHAR, result VARCHAR) ###human: Which week had a result of L 38-21? ###assistant: SELECT week FROM table_name_91 WHERE result = "l 38-21"
###context:CREATE TABLE table_name_96 (opponent VARCHAR, week VARCHAR, attendance VARCHAR) ###human: Who was the opponent after week 8 that had 72,190 people in attendance? ###assistant: SELECT opponent FROM table_name_96 WHERE week > 8 AND attendance = "72,190"
###context:CREATE TABLE table_name_55 (gold VARCHAR, year VARCHAR, place VARCHAR) ###human: Who won the Gold Medal in Moscow after the year 1982? ###assistant: SELECT gold FROM table_name_55 WHERE year > 1982 AND place = "moscow"
###context:CREATE TABLE table_name_70 (total INTEGER, bronze VARCHAR, rank VARCHAR, silver VARCHAR) ###human: What is the lowest total that has a rank less than 8, a silver greater than 6, and 20 as the bronze? ###assistant: SELECT MIN(total) FROM table_name_70 WHERE rank < 8 AND silver > 6 AND bronze = 20
###context:CREATE TABLE table_name_8 (silver INTEGER, bronze VARCHAR, gold VARCHAR, nation VARCHAR) ###human: What is the average silver that has a gold greater than 3, with soviet union (urs) as the nation, and a bronze greater than 26? ###assistant: SELECT AVG(silver) FROM table_name_8 WHERE gold > 3 AND nation = "soviet union (urs)" AND bronze > 26
###context:CREATE TABLE table_name_82 (silver INTEGER, total VARCHAR, bronze VARCHAR) ###human: What is the highest silver that has 57 as the total, with a bronze greater than 20? ###assistant: SELECT MAX(silver) FROM table_name_82 WHERE total = 57 AND bronze > 20
###context:CREATE TABLE table_name_20 (rank VARCHAR, nation VARCHAR, gold VARCHAR, bronze VARCHAR) ###human: What rank has a gold greater than 0, 0 as the bronze, with germany (ger) as the nation? ###assistant: SELECT rank FROM table_name_20 WHERE gold > 0 AND bronze = 0 AND nation = "germany (ger)"
###context:CREATE TABLE table_name_31 (bronze VARCHAR, gold VARCHAR, total VARCHAR, nation VARCHAR) ###human: How many bronzes have 1 as the total, with spain (esp) as the nation, and a gold greater than 0? ###assistant: SELECT COUNT(bronze) FROM table_name_31 WHERE total = 1 AND nation = "spain (esp)" AND gold > 0
###context:CREATE TABLE table_name_37 (prominence__m_ INTEGER, peak VARCHAR, elevation__m_ VARCHAR) ###human: Which Prominence (m) has a Peak of nakanai mountains high point, and an Elevation (m) smaller than 2,316? ###assistant: SELECT AVG(prominence__m_) FROM table_name_37 WHERE peak = "nakanai mountains high point" AND elevation__m_ < 2 OFFSET 316
###context:CREATE TABLE table_name_89 (position VARCHAR, player VARCHAR) ###human: What position Jason Fitzgerald played? ###assistant: SELECT position FROM table_name_89 WHERE player = "jason fitzgerald"
###context:CREATE TABLE table_name_9 (team VARCHAR, player VARCHAR) ###human: Jason Romano played for what team? ###assistant: SELECT team FROM table_name_9 WHERE player = "jason romano"
###context:CREATE TABLE table_name_96 (dimensions VARCHAR, output VARCHAR) ###human: What are the dimensions of the amp with a 180W output? ###assistant: SELECT dimensions FROM table_name_96 WHERE output = "180w"
###context:CREATE TABLE table_name_53 (average INTEGER, total VARCHAR, county VARCHAR) ###human: Which player was from Fermanagh and had an average score of 22? ###assistant: SELECT AVG(average) FROM table_name_53 WHERE total = 22 AND county = "fermanagh"
###context:CREATE TABLE table_name_90 (total VARCHAR, player VARCHAR, matches VARCHAR) ###human: How many total points did Oisin McConville have from his 5 matches? ###assistant: SELECT COUNT(total) FROM table_name_90 WHERE player = "oisin mcconville" AND matches < 5
###context:CREATE TABLE table_name_16 (attendance VARCHAR, date VARCHAR, week VARCHAR) ###human: How many attendances have October 30, 1977 as the date, with a week greater than 7? ###assistant: SELECT COUNT(attendance) FROM table_name_16 WHERE date = "october 30, 1977" AND week > 7
###context:CREATE TABLE table_name_82 (attendance INTEGER, result VARCHAR, week VARCHAR) ###human: What is the lowest attendance that has l 42-35 as the result, with a week less than 13? ###assistant: SELECT MIN(attendance) FROM table_name_82 WHERE result = "l 42-35" AND week < 13
###context:CREATE TABLE table_name_44 (name VARCHAR, heat VARCHAR, nationality VARCHAR) ###human: Who is from south korea and has a heat less than 3? ###assistant: SELECT name FROM table_name_44 WHERE heat < 3 AND nationality = "south korea"
###context:CREATE TABLE table_name_2 (heat INTEGER, nationality VARCHAR, lane VARCHAR) ###human: What is the highest heat of the athlete from spain with a lane less than 7? ###assistant: SELECT MAX(heat) FROM table_name_2 WHERE nationality = "spain" AND lane < 7
###context:CREATE TABLE table_name_78 (lane INTEGER, heat VARCHAR, nationality VARCHAR, time VARCHAR) ###human: What is the average lane of the athlete from japan with a time of 4:37.35 and a heat less than 3? ###assistant: SELECT AVG(lane) FROM table_name_78 WHERE nationality = "japan" AND time = "4:37.35" AND heat < 3
###context:CREATE TABLE table_name_45 (gold INTEGER, bronze VARCHAR, silver VARCHAR) ###human: What is the lowest Gold count if the Bronze is 4 and Silver is greater than 5? ###assistant: SELECT MIN(gold) FROM table_name_45 WHERE bronze = 4 AND silver > 5
###context:CREATE TABLE table_name_50 (silver INTEGER, gold INTEGER) ###human: What is the Average for Silver medals that have more than 17 Golds? ###assistant: SELECT AVG(silver) FROM table_name_50 WHERE gold > 17
###context:CREATE TABLE table_name_38 (silver INTEGER, total VARCHAR, bronze VARCHAR) ###human: What is the highest number of Silver medals with a Total greater than 14 and more than 15 Bronze medals? ###assistant: SELECT MAX(silver) FROM table_name_38 WHERE total > 14 AND bronze > 15
###context:CREATE TABLE table_name_69 (music___director VARCHAR, co___singer VARCHAR, film VARCHAR) ###human: Who is the music-director for the song from the film khaleja who had a co-singer of hemachandra? ###assistant: SELECT music___director FROM table_name_69 WHERE co___singer = "hemachandra" AND film = "khaleja"
###context:CREATE TABLE table_name_25 (score VARCHAR, att VARCHAR) ###human: What was the score for the matchup having attendance of 354? ###assistant: SELECT score FROM table_name_25 WHERE att = 354
###context:CREATE TABLE table_name_79 (nation VARCHAR, rank VARCHAR, total VARCHAR, bronze VARCHAR) ###human: What nation had a medal total of less than 10, less than 1 bronze medal, in rank 11? ###assistant: SELECT nation FROM table_name_79 WHERE total < 10 AND bronze < 1 AND rank = "11"
###context:CREATE TABLE table_name_44 (gold VARCHAR, silver VARCHAR, total VARCHAR) ###human: How many gold medals did the team that won a total of 10 medals and 3 silver medals win? ###assistant: SELECT gold FROM table_name_44 WHERE silver = 3 AND total = 10
###context:CREATE TABLE table_name_41 (total VARCHAR, bronze INTEGER) ###human: What is the total number of medals won by teams that won more than 11 bronze medals? ###assistant: SELECT COUNT(total) FROM table_name_41 WHERE bronze > 11
###context:CREATE TABLE table_name_53 (react INTEGER, country VARCHAR, lane VARCHAR) ###human: What is the lowest react of the athlete from the United States who has a lane less than 4? ###assistant: SELECT MIN(react) FROM table_name_53 WHERE country = "united states" AND lane < 4
###context:CREATE TABLE table_name_62 (react INTEGER, country VARCHAR, lane VARCHAR) ###human: What is the lowest of the athlete from sri lanka who has a lane greater than 8? ###assistant: SELECT MIN(react) FROM table_name_62 WHERE country = "sri lanka" AND lane > 8
###context:CREATE TABLE table_name_4 (react INTEGER, athlete VARCHAR, rank VARCHAR) ###human: What is the average react of athlete muna lee, who is ranked greater than 3? ###assistant: SELECT AVG(react) FROM table_name_4 WHERE athlete = "muna lee" AND rank > 3
###context:CREATE TABLE table_name_8 (lane INTEGER, country VARCHAR, time VARCHAR, react VARCHAR) ###human: What is the average lane of the athlete from cuba who has a time greater than 22.57 and react less than 0.245? ###assistant: SELECT AVG(lane) FROM table_name_8 WHERE time > 22.57 AND react < 0.245 AND country = "cuba"
###context:CREATE TABLE table_name_11 (react INTEGER, time VARCHAR, rank VARCHAR) ###human: What is the average react of the athlete with a time less than 22.29 and a rank greater than 1? ###assistant: SELECT AVG(react) FROM table_name_11 WHERE time < 22.29 AND rank > 1
###context:CREATE TABLE table_name_22 (opponent VARCHAR, date VARCHAR) ###human: Who is the Opponent on December 7, 2003? ###assistant: SELECT opponent FROM table_name_22 WHERE date = "december 7, 2003"
###context:CREATE TABLE table_name_40 (tv_time VARCHAR, attendance VARCHAR) ###human: What is the Tv Time of the game with an Attendance of 73,578? ###assistant: SELECT tv_time FROM table_name_40 WHERE attendance = "73,578"
###context:CREATE TABLE table_name_7 (result INTEGER, name VARCHAR, reaction_time VARCHAR) ###human: What is the highest result for Wallace Spearmon when the reaction time is greater than 0.167? ###assistant: SELECT MAX(result) FROM table_name_7 WHERE name = "wallace spearmon" AND reaction_time > 0.167
###context:CREATE TABLE table_name_12 (result VARCHAR, lane VARCHAR) ###human: What was the result for Lane 3? ###assistant: SELECT result FROM table_name_12 WHERE lane = 3
###context:CREATE TABLE table_name_66 (result INTEGER, lane VARCHAR, reaction_time VARCHAR, name VARCHAR) ###human: What is the lowest result for Christian Malcolm with a reaction time greater than 0.185 and a lane higher than 3? ###assistant: SELECT MIN(result) FROM table_name_66 WHERE reaction_time > 0.185 AND name = "christian malcolm" AND lane > 3
###context:CREATE TABLE table_name_71 (conceded INTEGER, draws VARCHAR, scored VARCHAR) ###human: What are the lowest conceded with 1 draw, and a score larger than 14? ###assistant: SELECT MIN(conceded) FROM table_name_71 WHERE draws = 1 AND scored > 14
###context:CREATE TABLE table_name_38 (losses INTEGER, scored VARCHAR, draws VARCHAR) ###human: What are the lowest losses with more than 13 scored, and more than 7 draws? ###assistant: SELECT MIN(losses) FROM table_name_38 WHERE scored > 13 AND draws > 7
###context:CREATE TABLE table_name_37 (played INTEGER, points INTEGER) ###human: What is the average played for less than 8 points? ###assistant: SELECT AVG(played) FROM table_name_37 WHERE points < 8
###context:CREATE TABLE table_name_73 (competition VARCHAR, result VARCHAR) ###human: What competition has a Result of 1–2? ###assistant: SELECT competition FROM table_name_73 WHERE result = "1–2"
###context:CREATE TABLE table_name_33 (moving_from VARCHAR, country VARCHAR) ###human: What is moving from fee in Hun country? ###assistant: SELECT moving_from FROM table_name_33 WHERE country = "hun"
###context:CREATE TABLE table_name_81 (type VARCHAR, country VARCHAR) ###human: What is thr type in Aut country? ###assistant: SELECT type FROM table_name_81 WHERE country = "aut"
###context:CREATE TABLE table_name_8 (owner VARCHAR, format VARCHAR) ###human: Who is the owner of the radio station that plays adult hits? ###assistant: SELECT owner FROM table_name_8 WHERE format = "adult hits"
###context:CREATE TABLE table_name_7 (call_sign VARCHAR, owner VARCHAR) ###human: What is the call sign for the radio owned by astral media? ###assistant: SELECT call_sign FROM table_name_7 WHERE owner = "astral media"
###context:CREATE TABLE table_name_6 (frequency VARCHAR, owner VARCHAR, call_sign VARCHAR) ###human: What is the frequency for the radio owned by bell media with a call sign of chsu-fm? ###assistant: SELECT frequency FROM table_name_6 WHERE owner = "bell media" AND call_sign = "chsu-fm"
###context:CREATE TABLE table_name_44 (branding VARCHAR, frequency VARCHAR) ###human: What is the branding for the radio with a frequency of 1150 am? ###assistant: SELECT branding FROM table_name_44 WHERE frequency = "1150 am"
###context:CREATE TABLE table_name_8 (format VARCHAR, frequency VARCHAR) ###human: What was the format for the radio with a frequency of 00 96.3 fm? ###assistant: SELECT format FROM table_name_8 WHERE frequency = "00 96.3 fm"
###context:CREATE TABLE table_name_90 (owner VARCHAR, frequency VARCHAR) ###human: Who is the owner of the radio frequency of 0 101.5 fm? ###assistant: SELECT owner FROM table_name_90 WHERE frequency = "0 101.5 fm"
###context:CREATE TABLE table_name_44 (time VARCHAR, name VARCHAR, lane VARCHAR) ###human: how many times is the name matt targett and the lane higher than 7? ###assistant: SELECT COUNT(time) FROM table_name_44 WHERE name = "matt targett" AND lane > 7
###context:CREATE TABLE table_name_30 (time INTEGER, rank VARCHAR, name VARCHAR) ###human: what is the highest time when the rank is less than 5 and the name is eamon sullivan? ###assistant: SELECT MAX(time) FROM table_name_30 WHERE rank < 5 AND name = "eamon sullivan"
###context:CREATE TABLE table_name_97 (rank INTEGER, lane VARCHAR, name VARCHAR) ###human: what is the average rank when the lane is more than 4 and the name is dominik meichtry? ###assistant: SELECT AVG(rank) FROM table_name_97 WHERE lane > 4 AND name = "dominik meichtry"
###context:CREATE TABLE table_name_63 (rank__2012_ VARCHAR) ###human: What is the 2012 Employees (Total) when the rank (2012) is 7? ###assistant: SELECT 2012 AS _employees__total_ FROM table_name_63 WHERE rank__2012_ = 7
###context:CREATE TABLE table_name_1 (employer VARCHAR) ###human: What shows for 2010 Employees (Total) when the employer is University of Alberta? ###assistant: SELECT SUM(2010 AS _employees__total_) FROM table_name_1 WHERE employer = "university of alberta"
###context:CREATE TABLE table_name_9 (year INTEGER, name VARCHAR) ###human: What year was the 190 South Lasalle Street? ###assistant: SELECT MAX(year) FROM table_name_9 WHERE name = "190 south lasalle street"
###context:CREATE TABLE table_name_94 (rank VARCHAR, time VARCHAR) ###human: What rank has a Time of 4:00.191? ###assistant: SELECT rank FROM table_name_94 WHERE time = "4:00.191"
###context:CREATE TABLE table_name_5 (time VARCHAR, country VARCHAR) ###human: What is the time for Brazil? ###assistant: SELECT time FROM table_name_5 WHERE country = "brazil"
###context:CREATE TABLE table_name_16 (date VARCHAR, format VARCHAR, country VARCHAR) ###human: what is the date when the format is cd (limited edition steel-box) from united kingdom? ###assistant: SELECT date FROM table_name_16 WHERE format = "cd (limited edition steel-box)" AND country = "united kingdom"
###context:CREATE TABLE table_name_61 (country VARCHAR, catalogue_no VARCHAR, format VARCHAR, label VARCHAR) ###human: What is the country that has the format of cd, the label of sony music and the catalogue no sicp-2055? ###assistant: SELECT country FROM table_name_61 WHERE format = "cd" AND label = "sony music" AND catalogue_no = "sicp-2055"
###context:CREATE TABLE table_name_28 (format VARCHAR, country VARCHAR, date VARCHAR) ###human: what is the format for the country united kingdom on 20 october 2008? ###assistant: SELECT format FROM table_name_28 WHERE country = "united kingdom" AND date = "20 october 2008"
###context:CREATE TABLE table_name_12 (catalogue_no VARCHAR, format VARCHAR, country VARCHAR) ###human: what is the catalogue no when the format is cd (limited edition steel-box) and the country is germany? ###assistant: SELECT catalogue_no FROM table_name_12 WHERE format = "cd (limited edition steel-box)" AND country = "germany"
###context:CREATE TABLE table_name_11 (total INTEGER, rank VARCHAR, silver VARCHAR) ###human: Which Total has a Rank of 4, and a Silver larger than 2? ###assistant: SELECT MIN(total) FROM table_name_11 WHERE rank = "4" AND silver > 2
###context:CREATE TABLE table_name_44 (total INTEGER, rank VARCHAR, bronze VARCHAR) ###human: How much Total has a Rank of 5, and a Bronze larger than 3? ###assistant: SELECT SUM(total) FROM table_name_44 WHERE rank = "5" AND bronze > 3
###context:CREATE TABLE table_name_1 (silver INTEGER, nation VARCHAR, bronze VARCHAR) ###human: Which Silver has a Nation of total, and a Bronze smaller than 18? ###assistant: SELECT MAX(silver) FROM table_name_1 WHERE nation = "total" AND bronze < 18
###context:CREATE TABLE table_name_58 (silver VARCHAR, nation VARCHAR) ###human: How much Silver has a Nation of total, and a Total smaller than 54? ###assistant: SELECT COUNT(silver) FROM table_name_58 WHERE nation = "total" AND "total" < 54
###context:CREATE TABLE table_name_68 (result VARCHAR, award VARCHAR) ###human: What was the result for the award for best current affairs presenter? ###assistant: SELECT result FROM table_name_68 WHERE award = "best current affairs presenter"
###context:CREATE TABLE table_name_84 (award VARCHAR, organisation VARCHAR) ###human: Which award was given to Lianhe Zaobao? ###assistant: SELECT award FROM table_name_84 WHERE organisation = "lianhe zaobao"
###context:CREATE TABLE table_name_4 (release_date VARCHAR, series VARCHAR, title VARCHAR) ###human: What's the release date of Feather Finger with an MM Series? ###assistant: SELECT release_date FROM table_name_4 WHERE series = "mm" AND title = "feather finger"
###context:CREATE TABLE table_name_12 (opponent VARCHAR, date VARCHAR, venue VARCHAR, result VARCHAR) ###human: Which Opponent has a Venue of h, and a Result of 0–1, and a Date of 29 august 1998? ###assistant: SELECT opponent FROM table_name_12 WHERE venue = "h" AND result = "0–1" AND date = "29 august 1998"
###context:CREATE TABLE table_name_30 (opponent VARCHAR, result VARCHAR, date VARCHAR) ###human: Which Opponent has a Result of 1–1, and a Date of 28 november 1998? ###assistant: SELECT opponent FROM table_name_30 WHERE result = "1–1" AND date = "28 november 1998"
###context:CREATE TABLE table_name_82 (venue VARCHAR, date VARCHAR) ###human: What was the venue on 14 november 1998? ###assistant: SELECT venue FROM table_name_82 WHERE date = "14 november 1998"
###context:CREATE TABLE table_name_3 (place INTEGER, draw VARCHAR, points VARCHAR) ###human: Which Place is the highest one that has a Draw larger than 1, and 49 Points? ###assistant: SELECT MAX(place) FROM table_name_3 WHERE draw > 1 AND points = 49
###context:CREATE TABLE table_name_90 (song VARCHAR, place VARCHAR, points VARCHAR, draw VARCHAR) ###human: Which Song has Points smaller than 54, and a Draw smaller than 4, and a Place smaller than 10? ###assistant: SELECT song FROM table_name_90 WHERE points < 54 AND draw < 4 AND place < 10
###context:CREATE TABLE table_name_30 (bronze INTEGER, total VARCHAR) ###human: What is the bronze number when the total is 54/ ###assistant: SELECT AVG(bronze) FROM table_name_30 WHERE total = 54
###context:CREATE TABLE table_name_34 (bronze INTEGER, silver INTEGER) ###human: What is the least bronze number when the silver is less than 0? ###assistant: SELECT MIN(bronze) FROM table_name_34 WHERE silver < 0
###context:CREATE TABLE table_name_4 (silver INTEGER, rank VARCHAR, gold VARCHAR, total VARCHAR, bronze VARCHAR) ###human: What is the least silver when the total is more than 2, bronze is 3, gold is more than 0, and rank is 1? ###assistant: SELECT MIN(silver) FROM table_name_4 WHERE total > 2 AND bronze = 3 AND gold > 0 AND rank = "1"
###context:CREATE TABLE table_name_44 (silver VARCHAR, rank VARCHAR, total VARCHAR, bronze VARCHAR) ###human: What is the number of silver when the total is more than 2, and bronze is less than 3, with a rank of 7? ###assistant: SELECT COUNT(silver) FROM table_name_44 WHERE total > 2 AND bronze < 3 AND rank = "7"
###context:CREATE TABLE table_name_94 (time INTEGER, lane VARCHAR, rank VARCHAR) ###human: Which Time has a Lane smaller than 4, and a Rank larger than 6? ###assistant: SELECT AVG(time) FROM table_name_94 WHERE lane < 4 AND rank > 6