inputs
stringlengths
400
1.34k
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What is Player, when Pick is "3", when Position is "Defense", and when Year is less than 2010? ### Context: CREATE TABLE table_name_80 (player VARCHAR, year VARCHAR, pick VARCHAR, position VARCHAR) ### Response: ### Response: SELECT player FROM table_name_80 WHERE pick = "3" AND position = "defense" AND year < 2010</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: who did highest rebounds in the game with score w 105–88 (ot) ### Context: CREATE TABLE table_17190012_7 (high_rebounds VARCHAR, score VARCHAR) ### Response: ### Response: SELECT high_rebounds FROM table_17190012_7 WHERE score = "W 105–88 (OT)"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What is the state for the royal house of ying? ### Context: CREATE TABLE table_name_58 (state VARCHAR, royal_house VARCHAR) ### Response: ### Response: SELECT state FROM table_name_58 WHERE royal_house = "ying"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What is the nature of the incident with Casualties of 3 wia, and Circumstances of ied? ### Context: CREATE TABLE table_name_93 (nature_of_incident VARCHAR, casualties VARCHAR, circumstances VARCHAR) ### Response: ### Response: SELECT nature_of_incident FROM table_name_93 WHERE casualties = "3 wia" AND circumstances = "ied"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What Player is from Argentina and whose position is a guard-forward? ### Context: CREATE TABLE table_name_9 (player VARCHAR, position VARCHAR, nationality VARCHAR) ### Response: ### Response: SELECT player FROM table_name_9 WHERE position = "guard-forward" AND nationality = "argentina"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: List the first name of all employees with job code PROF ordered by their date of birth. ### Context: CREATE TABLE employee (emp_fname VARCHAR, emp_jobcode VARCHAR, emp_dob VARCHAR) ### Response: ### Response: SELECT emp_fname FROM employee WHERE emp_jobcode = 'PROF' ORDER BY emp_dob</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: How many million U.S. viewers watched the episode with a production code of 1arc03? ### Context: CREATE TABLE table_25668962_1 (us_viewers__million_ VARCHAR, production_code VARCHAR) ### Response: ### Response: SELECT us_viewers__million_ FROM table_25668962_1 WHERE production_code = "1ARC03"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What is every original game for the artist Lynyrd Skynyrd? ### Context: CREATE TABLE table_21500850_1 (original_game VARCHAR, artist VARCHAR) ### Response: ### Response: SELECT original_game FROM table_21500850_1 WHERE artist = "Lynyrd Skynyrd"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: Which circuit is on July 24? ### Context: CREATE TABLE table_name_77 (circuit VARCHAR, date VARCHAR) ### Response: ### Response: SELECT circuit FROM table_name_77 WHERE date = "july 24"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What is the D 49 √ when D 47 √ is d 67 +? ### Context: CREATE TABLE table_name_37 (d_49_√ VARCHAR, d_47_√ VARCHAR) ### Response: ### Response: SELECT d_49_√ FROM table_name_37 WHERE d_47_√ = "d 67 +"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What is the Lundu (Salako) word for the Siburan-Pandawan word ěku? ### Context: CREATE TABLE table_name_36 (lundu__salako_ VARCHAR, siburan_padawan VARCHAR) ### Response: ### Response: SELECT lundu__salako_ FROM table_name_36 WHERE siburan_padawan = "ěku"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What is the attendance of the location where New Orleans's team plays? ### Context: CREATE TABLE table_name_81 (location_attendance VARCHAR, team VARCHAR) ### Response: ### Response: SELECT location_attendance FROM table_name_81 WHERE team = "new orleans"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What team has great plains as the conference, and concordia (ne) as the school? ### Context: CREATE TABLE table_name_58 (team VARCHAR, conference VARCHAR, school VARCHAR) ### Response: ### Response: SELECT team FROM table_name_58 WHERE conference = "great plains" AND school = "concordia (ne)"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What the total amount of points won during seed 25? ### Context: CREATE TABLE table_24431348_18 (points VARCHAR, seed VARCHAR) ### Response: ### Response: SELECT COUNT(points) AS won FROM table_24431348_18 WHERE seed = 25</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What is the event when the class is time trial hc a? ### Context: CREATE TABLE table_name_95 (event VARCHAR, class VARCHAR) ### Response: ### Response: SELECT event FROM table_name_95 WHERE class = "time trial hc a"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What is the name origin of Morrigan Linea? ### Context: CREATE TABLE table_16799784_9 (name VARCHAR) ### Response: ### Response: SELECT name AS origin FROM table_16799784_9 WHERE name = "Morrigan Linea"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: Name the high assists for score being l 98–118 (ot) ### Context: CREATE TABLE table_17102076_10 (high_assists VARCHAR, score VARCHAR) ### Response: ### Response: SELECT high_assists FROM table_17102076_10 WHERE score = "L 98–118 (OT)"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: Where is NCAA division ii Franklin Pierce University located at? ### Context: CREATE TABLE table_name_54 (location VARCHAR, classification VARCHAR, institution VARCHAR) ### Response: ### Response: SELECT location FROM table_name_54 WHERE classification = "ncaa division ii" AND institution = "franklin pierce university"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What is the displacement when the fuel system is carburettor, and a power of ps (kw; hp), and also has a model of 2000? ### Context: CREATE TABLE table_name_20 (displacement VARCHAR, model VARCHAR, fuel_system VARCHAR, power VARCHAR) ### Response: ### Response: SELECT displacement FROM table_name_20 WHERE fuel_system = "carburettor" AND power = "ps (kw; hp)" AND model = "2000"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: Who was the opponent after week 16? ### Context: CREATE TABLE table_name_43 (opponent VARCHAR, week INTEGER) ### Response: ### Response: SELECT opponent FROM table_name_43 WHERE week > 16</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What is the rank for total less than 5, 1 bronze and less than 1 silver? ### Context: CREATE TABLE table_name_50 (rank INTEGER, silver VARCHAR, total VARCHAR, bronze VARCHAR) ### Response: ### Response: SELECT AVG(rank) FROM table_name_50 WHERE total < 5 AND bronze = 1 AND silver < 1</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: what was the purse ($) in illinois? ### Context: CREATE TABLE table_name_80 (purse__ INTEGER, location VARCHAR) ### Response: ### Response: SELECT MAX(purse__) AS $__ FROM table_name_80 WHERE location = "illinois"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: what is the name when the laid down is 28 february 1943? ### Context: CREATE TABLE table_name_37 (name VARCHAR, laid_down VARCHAR) ### Response: ### Response: SELECT name FROM table_name_37 WHERE laid_down = "28 february 1943"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What is the id, forname and surname of the driver who had the first position in terms of laptime at least twice? ### Context: CREATE TABLE drivers (driverid VARCHAR, forename VARCHAR, surname VARCHAR); CREATE TABLE laptimes (driverid VARCHAR) ### Response: ### Response: SELECT T1.driverid, T1.forename, T1.surname FROM drivers AS T1 JOIN laptimes AS T2 ON T1.driverid = T2.driverid WHERE POSITION = '1' GROUP BY T1.driverid HAVING COUNT(*) >= 2</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What is the call sign with a 222 erp w? ### Context: CREATE TABLE table_name_15 (call_sign VARCHAR, erp_w VARCHAR) ### Response: ### Response: SELECT call_sign FROM table_name_15 WHERE erp_w = 222</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What was the team's playoff status in 2011? ### Context: CREATE TABLE table_16636344_1 (playoffs VARCHAR, year VARCHAR) ### Response: ### Response: SELECT playoffs FROM table_16636344_1 WHERE year = "2011"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What are the wifi and screen mode type of the hardware model named "LG-P760"? ### Context: CREATE TABLE phone (chip_model VARCHAR, screen_mode VARCHAR, Hardware_Model_name VARCHAR); CREATE TABLE chip_model (WiFi VARCHAR, Model_name VARCHAR); CREATE TABLE screen_mode (Type VARCHAR, Graphics_mode VARCHAR) ### Response: ### Response: SELECT T1.WiFi, T3.Type FROM chip_model AS T1 JOIN phone AS T2 ON T1.Model_name = T2.chip_model JOIN screen_mode AS T3 ON T2.screen_mode = T3.Graphics_mode WHERE T2.Hardware_Model_name = "LG-P760"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What is the School of Sussex Tech's Team? ### Context: CREATE TABLE table_name_31 (team VARCHAR, school VARCHAR) ### Response: ### Response: SELECT team FROM table_name_31 WHERE school = "sussex tech"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: How many swimsuits have an Evening Gown larger than 9, and an Interview larger than 8.405? ### Context: CREATE TABLE table_name_32 (swimsuit VARCHAR, evening_gown VARCHAR, interview VARCHAR) ### Response: ### Response: SELECT COUNT(swimsuit) FROM table_name_32 WHERE evening_gown > 9 AND interview > 8.405</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: In which year are there festivals both inside the 'United States' and outside the 'United States'? ### Context: CREATE TABLE festival_detail (YEAR VARCHAR, LOCATION VARCHAR) ### Response: ### Response: SELECT YEAR FROM festival_detail WHERE LOCATION = 'United States' INTERSECT SELECT YEAR FROM festival_detail WHERE LOCATION <> 'United States'</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: How many teams did Bob Peppler play for? ### Context: CREATE TABLE table_1213511_3 (nhl_team VARCHAR, player VARCHAR) ### Response: ### Response: SELECT COUNT(nhl_team) FROM table_1213511_3 WHERE player = "Bob Peppler"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What is the Super G value for the season that has an Overall score of 16? ### Context: CREATE TABLE table_name_8 (super_g VARCHAR, overall VARCHAR) ### Response: ### Response: SELECT super_g FROM table_name_8 WHERE overall = "16"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: what is the maximum international mail with total freight and mail being 145044 ### Context: CREATE TABLE table_141541_5 (international_mail INTEGER, total_freight_and_mail VARCHAR) ### Response: ### Response: SELECT MAX(international_mail) FROM table_141541_5 WHERE total_freight_and_mail = 145044</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What is the highest round for College of Nebraska if the Overall is under 190? ### Context: CREATE TABLE table_name_18 (round INTEGER, college VARCHAR, overall VARCHAR) ### Response: ### Response: SELECT MAX(round) FROM table_name_18 WHERE college = "nebraska" AND overall < 190</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: what was the venue that hosted Carlton as the away team? ### Context: CREATE TABLE table_name_24 (venue VARCHAR, away_team VARCHAR) ### Response: ### Response: SELECT venue FROM table_name_24 WHERE away_team = "carlton"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: Which Pop (2010) has an ANSI code smaller than 1036864, and a Longitude larger than -98.46611, and a Land (sqmi) smaller than 36.238, and a Latitude smaller than 48.144102? ### Context: CREATE TABLE table_name_21 (pop__2010_ INTEGER, latitude VARCHAR, land___sqmi__ VARCHAR, ansi_code VARCHAR, longitude VARCHAR) ### Response: ### Response: SELECT AVG(pop__2010_) FROM table_name_21 WHERE ansi_code < 1036864 AND longitude > -98.46611 AND land___sqmi__ < 36.238 AND latitude < 48.144102</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What is the highest kneel with a stand less than 187, and a 197 prone, and a qual more than 576? ### Context: CREATE TABLE table_name_59 (kneel INTEGER, qual VARCHAR, stand VARCHAR, prone VARCHAR) ### Response: ### Response: SELECT MAX(kneel) FROM table_name_59 WHERE stand < 187 AND prone = 197 AND qual > 576</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: what is the score that has tie number 27 ### Context: CREATE TABLE table_name_60 (score VARCHAR, tie_no VARCHAR) ### Response: ### Response: SELECT score FROM table_name_60 WHERE tie_no = "27"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What's Sara Isakovič's lane number that had a heat of 3? ### Context: CREATE TABLE table_name_43 (lane INTEGER, heat VARCHAR, name VARCHAR) ### Response: ### Response: SELECT SUM(lane) FROM table_name_43 WHERE heat = 3 AND name = "sara isakovič"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What is the highest goal difference that the club with 33-5 points and less than 12 wins? ### Context: CREATE TABLE table_name_52 (goal_difference INTEGER, points VARCHAR, wins VARCHAR) ### Response: ### Response: SELECT MAX(goal_difference) FROM table_name_52 WHERE points = "33-5" AND wins < 12</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: Which city contains Telus Plaza South? ### Context: CREATE TABLE table_name_66 (city VARCHAR, building VARCHAR) ### Response: ### Response: SELECT city FROM table_name_66 WHERE building = "telus plaza south"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What Player has a Place of 2? ### Context: CREATE TABLE table_name_78 (player VARCHAR, place VARCHAR) ### Response: ### Response: SELECT player FROM table_name_78 WHERE place = "2"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What player was picked by the New York Rangers? ### Context: CREATE TABLE table_2886617_2 (player VARCHAR, nhl_team VARCHAR) ### Response: ### Response: SELECT player FROM table_2886617_2 WHERE nhl_team = "New York Rangers"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What is the played average that has botev plovdiv as the club and wins larger than 11? ### Context: CREATE TABLE table_name_43 (played INTEGER, club VARCHAR, wins VARCHAR) ### Response: ### Response: SELECT AVG(played) FROM table_name_43 WHERE club = "botev plovdiv" AND wins > 11</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: Which frequency belongs to the cihr-fm call sign? ### Context: CREATE TABLE table_name_72 (frequency VARCHAR, call_sign VARCHAR) ### Response: ### Response: SELECT frequency FROM table_name_72 WHERE call_sign = "cihr-fm"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What was the average of wins with manager George Scherger smaller than 3 and losses smaller than 1? ### Context: CREATE TABLE table_name_91 (wins INTEGER, losses VARCHAR, games VARCHAR, manager VARCHAR) ### Response: ### Response: SELECT AVG(wins) FROM table_name_91 WHERE games < 3 AND manager = "george scherger" AND losses < 1</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What was the 1st leg when team 1 was apoel? ### Context: CREATE TABLE table_name_79 (team_1 VARCHAR) ### Response: ### Response: SELECT 1 AS st_leg FROM table_name_79 WHERE team_1 = "apoel"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What is the location where Denny Hulme was the driver? ### Context: CREATE TABLE table_name_54 (location VARCHAR, driver VARCHAR) ### Response: ### Response: SELECT location FROM table_name_54 WHERE driver = "denny hulme"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What is the Date, when the home team is the NY Rangers? ### Context: CREATE TABLE table_name_22 (date VARCHAR, home VARCHAR) ### Response: ### Response: SELECT date FROM table_name_22 WHERE home = "ny rangers"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: How many points does mia martini have? ### Context: CREATE TABLE table_name_1 (points VARCHAR, artist VARCHAR) ### Response: ### Response: SELECT COUNT(points) FROM table_name_1 WHERE artist = "mia martini"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: Who won the stage when Fumiyuki Beppu won the combativity award? ### Context: CREATE TABLE table_14395920_2 (winner VARCHAR, combativity_award VARCHAR) ### Response: ### Response: SELECT winner FROM table_14395920_2 WHERE combativity_award = "Fumiyuki Beppu"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What was the outcome when darija jurak anaïs laurendon was the opponent? ### Context: CREATE TABLE table_name_34 (outcome VARCHAR, opponents VARCHAR) ### Response: ### Response: SELECT outcome FROM table_name_34 WHERE opponents = "darija jurak anaïs laurendon"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: List the date, theme and sales of the journal which did not have any of the listed editors serving on committee. ### Context: CREATE TABLE journal_committee (journal_ID VARCHAR); CREATE TABLE journal (date VARCHAR, theme VARCHAR, sales VARCHAR); CREATE TABLE journal (date VARCHAR, theme VARCHAR, sales VARCHAR, journal_ID VARCHAR) ### Response: ### Response: SELECT date, theme, sales FROM journal EXCEPT SELECT T1.date, T1.theme, T1.sales FROM journal AS T1 JOIN journal_committee AS T2 ON T1.journal_ID = T2.journal_ID</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: All high points were record by corey maggette (25). ### Context: CREATE TABLE table_17080868_8 (record VARCHAR, high_points VARCHAR) ### Response: ### Response: SELECT record FROM table_17080868_8 WHERE high_points = "Corey Maggette (25)"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What is the classification with a Team classification of la vie claire and a Stage of 12? ### Context: CREATE TABLE table_name_62 (general_classification VARCHAR, team_classification VARCHAR, stage VARCHAR) ### Response: ### Response: SELECT general_classification FROM table_name_62 WHERE team_classification = "la vie claire" AND stage = "12"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What is the NFL team of the player whose college is Minnesota? ### Context: CREATE TABLE table_14650162_1 (nfl_team VARCHAR, college VARCHAR) ### Response: ### Response: SELECT nfl_team FROM table_14650162_1 WHERE college = "Minnesota"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What is Apogee, when Inclination is 65°, and when Launch Date/Time is ( GMT ) is 15 February 1973, 01:11? ### Context: CREATE TABLE table_name_48 (apogee VARCHAR, inclination VARCHAR, launch_date_time___gmt__ VARCHAR) ### Response: ### Response: SELECT apogee FROM table_name_48 WHERE inclination = "65°" AND launch_date_time___gmt__ = "15 february 1973, 01:11"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: How many goes played fot hteam that lost less than 12 games, drew 5, and had over 37 points? ### Context: CREATE TABLE table_name_75 (played VARCHAR, drawn VARCHAR, lost VARCHAR, points VARCHAR) ### Response: ### Response: SELECT played FROM table_name_75 WHERE lost < 12 AND points > 37 AND drawn = 5</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What year did he start at 13? ### Context: CREATE TABLE table_name_6 (year VARCHAR, start VARCHAR) ### Response: ### Response: SELECT year FROM table_name_6 WHERE start = "13"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What is the most recent year for a first elected republican? ### Context: CREATE TABLE table_name_36 (first_elected INTEGER, party VARCHAR) ### Response: ### Response: SELECT MAX(first_elected) FROM table_name_36 WHERE party = "republican"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: When 3 is the rr1 points what is won score? ### Context: CREATE TABLE table_21489362_2 (won VARCHAR, rr1_pts VARCHAR) ### Response: ### Response: SELECT won FROM table_21489362_2 WHERE rr1_pts = 3</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: Which Sydney has a Perth of no, an Adelaide of yes, and a Gold Coast of no? ### Context: CREATE TABLE table_name_84 (sydney VARCHAR, gold_coast VARCHAR, perth VARCHAR, adelaide VARCHAR) ### Response: ### Response: SELECT sydney FROM table_name_84 WHERE perth = "no" AND adelaide = "yes" AND gold_coast = "no"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: When 1 is the number in series who is the director? ### Context: CREATE TABLE table_18335117_3 (director VARCHAR, no_in_series VARCHAR) ### Response: ### Response: SELECT director FROM table_18335117_3 WHERE no_in_series = 1</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What was the title when there were 14.39 million viewers? ### Context: CREATE TABLE table_15717093_1 (title VARCHAR, us_viewers__millions_ VARCHAR) ### Response: ### Response: SELECT title FROM table_15717093_1 WHERE us_viewers__millions_ = "14.39"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: Return all the information for all employees without any department number. ### Context: CREATE TABLE employees (department_id VARCHAR) ### Response: ### Response: SELECT * FROM employees WHERE department_id = "null"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: In what constituency was the result labour hold and Liberal democrat Elizabeth Newton won? ### Context: CREATE TABLE table_name_12 (constituency VARCHAR, result VARCHAR, liberal_democrats VARCHAR) ### Response: ### Response: SELECT constituency FROM table_name_12 WHERE result = "labour hold" AND liberal_democrats = "elizabeth newton"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What is the highest year premiered when Benjamin Castaldi is main presenter? ### Context: CREATE TABLE table_24224647_2 (year_premiered INTEGER, main_presenter VARCHAR) ### Response: ### Response: SELECT MAX(year_premiered) FROM table_24224647_2 WHERE main_presenter = "Benjamin Castaldi"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: The entrepreneur Adam Weaver was featured in which episode? ### Context: CREATE TABLE table_name_28 (episode VARCHAR, entrepreneur_s_ VARCHAR) ### Response: ### Response: SELECT episode FROM table_name_28 WHERE entrepreneur_s_ = "adam weaver"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What is Record, when Date is "December 30"? ### Context: CREATE TABLE table_name_22 (record VARCHAR, date VARCHAR) ### Response: ### Response: SELECT record FROM table_name_22 WHERE date = "december 30"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What is the date of the episode with Ryan Stiles as performer 2, Colin Mochrie as performer 3, and Tony Slattery as performer 4? ### Context: CREATE TABLE table_name_26 (date VARCHAR, performer_4 VARCHAR, performer_2 VARCHAR, performer_3 VARCHAR) ### Response: ### Response: SELECT date FROM table_name_26 WHERE performer_2 = "ryan stiles" AND performer_3 = "colin mochrie" AND performer_4 = "tony slattery"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: When the conference is west coast and the number of bids are at 2, what's the percentage of games won? ### Context: CREATE TABLE table_name_51 (win__percentage VARCHAR, _number_of_bids VARCHAR, conference VARCHAR) ### Response: ### Response: SELECT win__percentage FROM table_name_51 WHERE _number_of_bids = 2 AND conference = "west coast"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: Which Runner(s)-up has a Tournament of general foods pga seniors' championship? ### Context: CREATE TABLE table_name_65 (runner_s__up VARCHAR, tournament VARCHAR) ### Response: ### Response: SELECT runner_s__up FROM table_name_65 WHERE tournament = "general foods pga seniors' championship"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: Who is every name for time(cet) of 09:03? ### Context: CREATE TABLE table_21536557_2 (name VARCHAR, time__cet_ VARCHAR) ### Response: ### Response: SELECT name FROM table_21536557_2 WHERE time__cet_ = "09:03"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What replica has the 5th position? ### Context: CREATE TABLE table_name_82 (replica VARCHAR, position VARCHAR) ### Response: ### Response: SELECT replica FROM table_name_82 WHERE position = "5th"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What was the result of the game versus Tulsa? ### Context: CREATE TABLE table_name_80 (result VARCHAR, opponent VARCHAR) ### Response: ### Response: SELECT result FROM table_name_80 WHERE opponent = "tulsa"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What is every entry for Friday August 26 when the entry for Wednesday August 24 is 23' 52.67 94.807mph? ### Context: CREATE TABLE table_30058355_7 (fri_26_aug VARCHAR, wed_24_aug VARCHAR) ### Response: ### Response: SELECT fri_26_aug FROM table_30058355_7 WHERE wed_24_aug = "23' 52.67 94.807mph"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What's the Backed after 2008 with a label of Wild World? ### Context: CREATE TABLE table_name_24 (backed_with VARCHAR, record_label VARCHAR, date VARCHAR) ### Response: ### Response: SELECT backed_with FROM table_name_24 WHERE record_label = "wild world" AND date > 2008</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: How many episodes were written by Alexander Woo and directed by Scott Winant? ### Context: CREATE TABLE table_26493520_1 (title VARCHAR, written_by VARCHAR, directed_by VARCHAR) ### Response: ### Response: SELECT COUNT(title) FROM table_26493520_1 WHERE written_by = "Alexander Woo" AND directed_by = "Scott Winant"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What was the conference record for the Pandas when they were first in the standings in the 2003-04 season? ### Context: CREATE TABLE table_27069503_2 (conf_record VARCHAR, standings VARCHAR, season VARCHAR) ### Response: ### Response: SELECT conf_record FROM table_27069503_2 WHERE standings = "First" AND season = "2003-04"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What was the score for the game played on May 10 at Alex Box Stadium? ### Context: CREATE TABLE table_name_65 (score VARCHAR, site_stadium VARCHAR, date VARCHAR) ### Response: ### Response: SELECT score FROM table_name_65 WHERE site_stadium = "alex box stadium" AND date = "may 10"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: In round 9 what was the nationality? ### Context: CREATE TABLE table_name_98 (nationality VARCHAR, round VARCHAR) ### Response: ### Response: SELECT nationality FROM table_name_98 WHERE round = "9"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: Who was the opponent when the result was L 0-14? ### Context: CREATE TABLE table_name_64 (opponent VARCHAR, result VARCHAR) ### Response: ### Response: SELECT opponent FROM table_name_64 WHERE result = "l 0-14"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What was the reating share when the total viewers was 11.49 million? ### Context: CREATE TABLE table_23793770_2 (rating VARCHAR, total_viewers__in_millions_ VARCHAR) ### Response: ### Response: SELECT rating / SHARE(18 AS –49) FROM table_23793770_2 WHERE total_viewers__in_millions_ = "11.49"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: Name the county for mccain being 38.78% ### Context: CREATE TABLE table_20468206_1 (county VARCHAR, mccain_percentage VARCHAR) ### Response: ### Response: SELECT county FROM table_20468206_1 WHERE mccain_percentage = "38.78%"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: Who presented their credentials at an unknown date? ### Context: CREATE TABLE table_name_11 (name VARCHAR, presentation_of_credentials VARCHAR) ### Response: ### Response: SELECT name FROM table_name_11 WHERE presentation_of_credentials = "unknown"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What was the Against when the Opposing Team was sheffield wednesday? ### Context: CREATE TABLE table_name_24 (against VARCHAR, opposing_team VARCHAR) ### Response: ### Response: SELECT against FROM table_name_24 WHERE opposing_team = "sheffield wednesday"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: Which Played number had a goal difference of more than 0 when the club was Valencia CF? ### Context: CREATE TABLE table_name_29 (played VARCHAR, goal_difference VARCHAR, club VARCHAR) ### Response: ### Response: SELECT COUNT(played) FROM table_name_29 WHERE goal_difference > 0 AND club = "valencia cf"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What university team is referred to as the tigers? ### Context: CREATE TABLE table_2419754_1 (institution VARCHAR, nickname VARCHAR) ### Response: ### Response: SELECT institution FROM table_2419754_1 WHERE nickname = "Tigers"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What is the Status when Henry I is the Monarch and the Reason is succession unclear 1100-1103? ### Context: CREATE TABLE table_name_11 (status VARCHAR, monarch VARCHAR, reason VARCHAR) ### Response: ### Response: SELECT status FROM table_name_11 WHERE monarch = "henry i" AND reason = "succession unclear 1100-1103"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: Which Winner has a Last 16 of £400? ### Context: CREATE TABLE table_name_4 (winner VARCHAR, last_16 VARCHAR) ### Response: ### Response: SELECT winner FROM table_name_4 WHERE last_16 = "£400"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What country is Bandar Abbas in? ### Context: CREATE TABLE table_name_8 (country VARCHAR, city VARCHAR) ### Response: ### Response: SELECT country FROM table_name_8 WHERE city = "bandar abbas"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: Who wrote episode number 18? ### Context: CREATE TABLE table_28196105_1 (written_by VARCHAR, _number VARCHAR) ### Response: ### Response: SELECT written_by FROM table_28196105_1 WHERE _number = 18</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: Name all Pick that has a Round of 7, and a School/Club Team of arizona st.? ### Context: CREATE TABLE table_name_46 (pick VARCHAR, round VARCHAR, school_club_team VARCHAR) ### Response: ### Response: SELECT COUNT(pick) FROM table_name_46 WHERE round = 7 AND school_club_team = "arizona st."</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: When none (new seat) is the first elected who are the candidates? ### Context: CREATE TABLE table_25030512_12 (candidates VARCHAR, first_elected VARCHAR) ### Response: ### Response: SELECT candidates FROM table_25030512_12 WHERE first_elected = "None (New seat)"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: Show the album names and ids for albums that contain tracks with unit price bigger than 1. ### Context: CREATE TABLE ALBUM (Title VARCHAR, AlbumId VARCHAR); CREATE TABLE TRACK (AlbumID VARCHAR, AlbumId VARCHAR, UnitPrice INTEGER) ### Response: ### Response: SELECT T1.Title, T2.AlbumID FROM ALBUM AS T1 JOIN TRACK AS T2 ON T1.AlbumId = T2.AlbumId WHERE T2.UnitPrice > 1 GROUP BY T2.AlbumID</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: Name the gore number for others # 6.6% ### Context: CREATE TABLE table_23014476_1 (gore__number INTEGER, others__number VARCHAR) ### Response: ### Response: SELECT MIN(gore__number) FROM table_23014476_1 WHERE others__number = "6.6%"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What was the size of the crowd when North Melbourne was the home team? ### Context: CREATE TABLE table_name_64 (crowd VARCHAR, home_team VARCHAR) ### Response: ### Response: SELECT crowd FROM table_name_64 WHERE home_team = "north melbourne"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: Round larger than 2, and a Position of guard involves what college? ### Context: CREATE TABLE table_name_6 (college VARCHAR, round VARCHAR, position VARCHAR) ### Response: ### Response: SELECT college FROM table_name_6 WHERE round > 2 AND position = "guard"</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: How many seasons had a Super G of 2 and overall of 3? ### Context: CREATE TABLE table_name_61 (season VARCHAR, super_g VARCHAR, overall VARCHAR) ### Response: ### Response: SELECT COUNT(season) FROM table_name_61 WHERE super_g = "2" AND overall = 3</s>
<s>### Instruction: You are a powerful text-to-SQL model. Your job is to answer questions about a database. You are given a question and context regarding one or more tables. You must output the SQL query that answers the question. ### Dialect: sqlite ### Input: What was the position of the player whose team lost super bowl xxv before 1992, with a team defense rank larger than 3? ### Context: CREATE TABLE table_name_47 (position VARCHAR, team_performance VARCHAR, team_defense_rank VARCHAR, year VARCHAR) ### Response: ### Response: SELECT position FROM table_name_47 WHERE team_defense_rank > 3 AND year < 1992 AND team_performance = "lost super bowl xxv"</s>