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 the total number of U Wins, when Alianza Goals is "0", and when U Goals is greater than 3? ### Context: CREATE TABLE table_name_25 (u_wins VARCHAR, alianza_goals VARCHAR, u_goals VARCHAR) ### Response: ### Response: SELECT COUNT(u_wins) FROM table_name_25 WHERE alianza_goals = 0 AND u_goals > 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 service id and type has the least number of participants? ### Context: CREATE TABLE Participants_in_Events (Participant_ID VARCHAR, Event_ID VARCHAR); CREATE TABLE services (Service_Type_Code VARCHAR, service_id VARCHAR); CREATE TABLE EVENTS (service_id VARCHAR, Event_ID VARCHAR); CREATE TABLE participants (Participant_ID VARCHAR) ### Response: ### Response: SELECT T3.service_id, T4.Service_Type_Code FROM participants AS T1 JOIN Participants_in_Events AS T2 ON T1.Participant_ID = T2.Participant_ID JOIN EVENTS AS T3 ON T2.Event_ID = T3.Event_ID JOIN services AS T4 ON T3.service_id = T4.service_id GROUP BY T3.service_id ORDER BY COUNT(*) LIMIT 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 is the authority of the scientific name of O. Tricuspis? ### Context: CREATE TABLE table_name_50 (authority VARCHAR, scientic_name VARCHAR) ### Response: ### Response: SELECT authority FROM table_name_50 WHERE scientic_name = "o. tricuspis"</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 Hanyu Pinyin is labeled rural? ### Context: CREATE TABLE table_name_68 (hanyu_pinyin VARCHAR, name VARCHAR) ### Response: ### Response: SELECT hanyu_pinyin FROM table_name_68 WHERE name = "rural"</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 least attendance with visitor of edmonton ### Context: CREATE TABLE table_name_98 (attendance INTEGER, visitor VARCHAR) ### Response: ### Response: SELECT MIN(attendance) FROM table_name_98 WHERE visitor = "edmonton"</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 answered the 20 questions on 10-07? ### Context: CREATE TABLE table_1566852_8 (date VARCHAR) ### Response: ### Response: SELECT 20 AS _questions FROM table_1566852_8 WHERE date = "10-07"</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 number episode in the series had a production code of 110? ### Context: CREATE TABLE table_25246990_2 (no_in_series VARCHAR, prod_code VARCHAR) ### Response: ### Response: SELECT no_in_series FROM table_25246990_2 WHERE prod_code = "110"</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 for the away team when South Melbourne was the home team? ### Context: CREATE TABLE table_name_58 (away_team VARCHAR, home_team VARCHAR) ### Response: ### Response: SELECT away_team AS score FROM table_name_58 WHERE home_team = "south 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: What is the total of rebound averages with more than 98 games and a rank of 7? ### Context: CREATE TABLE table_name_16 (reb_avg INTEGER, games VARCHAR, rank VARCHAR) ### Response: ### Response: SELECT SUM(reb_avg) FROM table_name_16 WHERE games > 98 AND rank = 7</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 un region for 378000 population ### Context: CREATE TABLE table_16278349_1 (un_region VARCHAR, population VARCHAR) ### Response: ### Response: SELECT un_region FROM table_16278349_1 WHERE population = 378000</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 date has a set 4 of 25-19? ### Context: CREATE TABLE table_name_33 (date VARCHAR, set_4 VARCHAR) ### Response: ### Response: SELECT date FROM table_name_33 WHERE set_4 = "25-19"</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 CO2 g/km of a Fiat running on diesel with the L/100km urban more than 6.3 and an mpg-UK combined of 43.5? ### Context: CREATE TABLE table_name_20 (co_2_g_km VARCHAR, mpg_uk_combined VARCHAR, l_100km_urban__cold_ VARCHAR, fuel_type VARCHAR, manufacturer VARCHAR) ### Response: ### Response: SELECT COUNT(co_2_g_km) FROM table_name_20 WHERE fuel_type = "diesel" AND manufacturer = "fiat" AND l_100km_urban__cold_ > 6.3 AND mpg_uk_combined = 43.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's the f/laps count for the team with 8 podiums? ### Context: CREATE TABLE table_27571406_1 (f_laps VARCHAR, podiums VARCHAR) ### Response: ### Response: SELECT f_laps FROM table_27571406_1 WHERE podiums = 8</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 Score that has a Place of t5 of tom watson? ### Context: CREATE TABLE table_name_45 (score VARCHAR, place VARCHAR, player VARCHAR) ### Response: ### Response: SELECT score FROM table_name_45 WHERE place = "t5" AND player = "tom watson"</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 airing date for a modern drama with more than 21 episodes? ### Context: CREATE TABLE table_name_21 (airing_date VARCHAR, genre VARCHAR, number_of_episodes VARCHAR) ### Response: ### Response: SELECT airing_date FROM table_name_21 WHERE genre = "modern drama" AND number_of_episodes > 21</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 home team's score at glenferrie oval? ### Context: CREATE TABLE table_name_66 (home_team VARCHAR, venue VARCHAR) ### Response: ### Response: SELECT home_team AS score FROM table_name_66 WHERE venue = "glenferrie oval"</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 the away team that played home team Perth Wildcats? ### Context: CREATE TABLE table_name_82 (away_team VARCHAR, home_team VARCHAR) ### Response: ### Response: SELECT away_team FROM table_name_82 WHERE home_team = "perth wildcats"</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 # tubes with audio amp of x ### Context: CREATE TABLE table_name_30 (_number_tubes VARCHAR, audio_amp VARCHAR) ### Response: ### Response: SELECT _number_tubes FROM table_name_30 WHERE audio_amp = "x"</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 district of Paraswada with none reserved? ### Context: CREATE TABLE table_name_64 (district VARCHAR, reserved_for___sc___st__none_ VARCHAR, name VARCHAR) ### Response: ### Response: SELECT district FROM table_name_64 WHERE reserved_for___sc___st__none_ = "none" AND name = "paraswada"</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: find the names of people who are taller than 200 or lower than 190. ### Context: CREATE TABLE people (name VARCHAR, height VARCHAR) ### Response: ### Response: SELECT name FROM people WHERE height > 200 OR height < 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 are the international tourist arrivals(2010) where change from 2009 to 2010 is +11.1%? ### Context: CREATE TABLE table_14752049_2 (international_tourist_arrivals__2010_ VARCHAR, change__2009_to_2010_ VARCHAR) ### Response: ### Response: SELECT international_tourist_arrivals__2010_ FROM table_14752049_2 WHERE change__2009_to_2010_ = "+11.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 is the sum of all crowds present at the Glenferrie Oval venue? ### Context: CREATE TABLE table_name_35 (crowd INTEGER, venue VARCHAR) ### Response: ### Response: SELECT SUM(crowd) FROM table_name_35 WHERE venue = "glenferrie oval"</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 played at lake oval while away? ### Context: CREATE TABLE table_name_51 (away_team VARCHAR, venue VARCHAR) ### Response: ### Response: SELECT away_team FROM table_name_51 WHERE venue = "lake oval"</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 when the event was November reign? ### Context: CREATE TABLE table_name_84 (location VARCHAR, event VARCHAR) ### Response: ### Response: SELECT location FROM table_name_84 WHERE event = "november reign"</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: Find the name of customers who do not have a loan with a type of Mortgages. ### Context: CREATE TABLE loan (cust_id VARCHAR, loan_type VARCHAR); CREATE TABLE customer (cust_name VARCHAR); CREATE TABLE customer (cust_name VARCHAR, cust_id VARCHAR) ### Response: ### Response: SELECT cust_name FROM customer EXCEPT SELECT T1.cust_name FROM customer AS T1 JOIN loan AS T2 ON T1.cust_id = T2.cust_id WHERE T2.loan_type = 'Mortgages'</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 placed t1 in Scotland? ### Context: CREATE TABLE table_name_37 (player VARCHAR, place VARCHAR, country VARCHAR) ### Response: ### Response: SELECT player FROM table_name_37 WHERE place = "t1" AND country = "scotland"</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 number of points the cosworth straight-4 engine scored? ### Context: CREATE TABLE table_name_51 (pts INTEGER, engine VARCHAR) ### Response: ### Response: SELECT MAX(pts) FROM table_name_51 WHERE engine = "cosworth straight-4"</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 Run 2 has a Run 1 of 1:30.03? ### Context: CREATE TABLE table_name_29 (run_2 VARCHAR, run_1 VARCHAR) ### Response: ### Response: SELECT run_2 FROM table_name_29 WHERE run_1 = "1:30.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 score did Seve Ballesteros have when he was in T3 place? ### Context: CREATE TABLE table_name_54 (score VARCHAR, place VARCHAR, player VARCHAR) ### Response: ### Response: SELECT score FROM table_name_54 WHERE place = "t3" AND player = "seve ballesteros"</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 record for May 31? ### Context: CREATE TABLE table_name_83 (record VARCHAR, date VARCHAR) ### Response: ### Response: SELECT record FROM table_name_83 WHERE date = "may 31"</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 game on July 26? ### Context: CREATE TABLE table_name_1 (attendance INTEGER, date VARCHAR) ### Response: ### Response: SELECT SUM(attendance) FROM table_name_1 WHERE date = "july 26"</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 railways are there? ### Context: CREATE TABLE railway (Id VARCHAR) ### Response: ### Response: SELECT COUNT(*) FROM railway</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 rounds was the match against Jason Fairn? ### Context: CREATE TABLE table_name_78 (round VARCHAR, opponent VARCHAR) ### Response: ### Response: SELECT round FROM table_name_78 WHERE opponent = "jason fairn"</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 Result when the Theme was by Dolly Parton? ### Context: CREATE TABLE table_name_42 (result VARCHAR, theme VARCHAR) ### Response: ### Response: SELECT result FROM table_name_42 WHERE theme = "dolly parton"</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 Oct 19? ### Context: CREATE TABLE table_name_30 (record VARCHAR, date VARCHAR) ### Response: ### Response: SELECT record FROM table_name_30 WHERE date = "oct 19"</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 was the incumbent in the Tennessee 4 district first elected? ### Context: CREATE TABLE table_1341453_44 (first_elected VARCHAR, district VARCHAR) ### Response: ### Response: SELECT first_elected FROM table_1341453_44 WHERE district = "Tennessee 4"</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 away team when geelong was the home team? ### Context: CREATE TABLE table_name_4 (away_team VARCHAR, home_team VARCHAR) ### Response: ### Response: SELECT away_team AS score FROM table_name_4 WHERE home_team = "geelong"</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: For each file format, return the number of artists who released songs in that format. ### Context: CREATE TABLE files (formats VARCHAR) ### Response: ### Response: SELECT COUNT(*), formats FROM files GROUP BY formats</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 lowest height for Rans Brempong? ### Context: CREATE TABLE table_name_37 (height INTEGER, player VARCHAR) ### Response: ### Response: SELECT MIN(height) FROM table_name_37 WHERE player = "rans brempong"</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 first election year listed? ### Context: CREATE TABLE table_1341472_20 (first_elected INTEGER) ### Response: ### Response: SELECT MIN(first_elected) FROM table_1341472_20</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 chassis did fondmetal f1 spa use after 1990? ### Context: CREATE TABLE table_name_32 (chassis VARCHAR, year VARCHAR, entrant VARCHAR) ### Response: ### Response: SELECT chassis FROM table_name_32 WHERE year > 1990 AND entrant = "fondmetal f1 spa"</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 Ben Hogan's par? ### Context: CREATE TABLE table_name_45 (to_par VARCHAR, player VARCHAR) ### Response: ### Response: SELECT to_par FROM table_name_45 WHERE player = "ben hogan"</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 people were in attendance in a week over 4 on December 6, 1981? ### Context: CREATE TABLE table_name_76 (attendance VARCHAR, week VARCHAR, date VARCHAR) ### Response: ### Response: SELECT COUNT(attendance) FROM table_name_76 WHERE week > 4 AND date = "december 6, 1981"</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 event was in Tokyo, Japan and had an opponent of rumina sato? ### Context: CREATE TABLE table_name_38 (event VARCHAR, location VARCHAR, opponent VARCHAR) ### Response: ### Response: SELECT event FROM table_name_38 WHERE location = "tokyo, japan" AND opponent = "rumina sato"</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 lowest Seats 2010 which has Seats 2005 smaller than 9, and a Governorate of al muthanna governorate, and an In/de-creased by larger than 2? ### Context: CREATE TABLE table_name_46 (seats_2010 INTEGER, in_de_creased_by VARCHAR, seats_2005 VARCHAR, governorate VARCHAR) ### Response: ### Response: SELECT MIN(seats_2010) FROM table_name_46 WHERE seats_2005 < 9 AND governorate = "al muthanna governorate" AND in_de_creased_by > 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: Which season titles were directed by Laura Innes? ### Context: CREATE TABLE table_17355933_1 (title VARCHAR, directed_by VARCHAR) ### Response: ### Response: SELECT title FROM table_17355933_1 WHERE directed_by = "Laura Innes"</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 games were played by a team that won 0.00% of their games and 0 draws? ### Context: CREATE TABLE table_name_55 (played INTEGER, percentage VARCHAR, drawn VARCHAR) ### Response: ### Response: SELECT SUM(played) FROM table_name_55 WHERE percentage = "0.00%" AND drawn < 0</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 of the plaza where the told for heavy vehicles with 2 axles is r20.50? ### Context: CREATE TABLE table_1211545_2 (name VARCHAR, heavy_vehicle__2_axles_ VARCHAR) ### Response: ### Response: SELECT name FROM table_1211545_2 WHERE heavy_vehicle__2_axles_ = "R20.50"</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 for US catalog CK 9942? ### Context: CREATE TABLE table_name_4 (date VARCHAR, country VARCHAR, catalog VARCHAR) ### Response: ### Response: SELECT date FROM table_name_4 WHERE country = "us" AND catalog = "ck 9942"</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 amount of points with a goal average larger than 4, less than 12 draws, and a goal of 63? ### Context: CREATE TABLE table_name_63 (points INTEGER, goals_for VARCHAR, goal_average VARCHAR, draws VARCHAR) ### Response: ### Response: SELECT MAX(points) FROM table_name_63 WHERE goal_average > 4 AND draws < 12 AND goals_for = 63</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 Podium has 1 Race and a Final Place of 5th? ### Context: CREATE TABLE table_name_11 (podiums VARCHAR, races VARCHAR, final_placing VARCHAR) ### Response: ### Response: SELECT podiums FROM table_name_11 WHERE races = "1" AND final_placing = "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: How many values of free float for the BSE code of 4EH? ### Context: CREATE TABLE table_20667854_1 (free_float VARCHAR, bse_code VARCHAR) ### Response: ### Response: SELECT COUNT(free_float) FROM table_20667854_1 WHERE bse_code = "4EH"</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 name is located in China? ### Context: CREATE TABLE table_name_8 (name VARCHAR, location VARCHAR) ### Response: ### Response: SELECT name FROM table_name_8 WHERE location = "china"</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: Find the name of the customer that has been involved in the most policies. ### Context: CREATE TABLE customers (customer_details VARCHAR, customer_id VARCHAR); CREATE TABLE policies (customer_id VARCHAR) ### Response: ### Response: SELECT t2.customer_details FROM policies AS t1 JOIN customers AS t2 ON t1.customer_id = t2.customer_id GROUP BY t2.customer_details ORDER BY COUNT(*) DESC LIMIT 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 location when the stolen ends is 12 and shot pct is 77%? ### Context: CREATE TABLE table_1543845_63 (locale VARCHAR, stolen_ends VARCHAR, shot_pct VARCHAR) ### Response: ### Response: SELECT locale FROM table_1543845_63 WHERE stolen_ends = 12 AND shot_pct = "77%"</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 percentage of browsers were using Internet Explorer during the period in which 27.85% were using Firefox? ### Context: CREATE TABLE table_name_39 (internet_explorer VARCHAR, firefox VARCHAR) ### Response: ### Response: SELECT internet_explorer FROM table_name_39 WHERE firefox = "27.85%"</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 College has Player Mark Brown and a Pick # greater than 195? ### Context: CREATE TABLE table_name_63 (college VARCHAR, pick__number VARCHAR, player VARCHAR) ### Response: ### Response: SELECT college FROM table_name_63 WHERE pick__number > 195 AND player = "mark brown"</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: On what Date is Sheffield Wednesday the Home team? ### Context: CREATE TABLE table_name_61 (date VARCHAR, home_team VARCHAR) ### Response: ### Response: SELECT date FROM table_name_61 WHERE home_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 opponent has a date of July 7? ### Context: CREATE TABLE table_name_35 (opponent VARCHAR, date VARCHAR) ### Response: ### Response: SELECT opponent FROM table_name_35 WHERE date = "july 7"</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 players with 1285 new points? ### Context: CREATE TABLE table_24431264_18 (player VARCHAR, new_points VARCHAR) ### Response: ### Response: SELECT player FROM table_24431264_18 WHERE new_points = 1285</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 total number of Pick, when Position is OT, when Overall is greater than 91, when Round is greater than 21, and when College is Mississippi? ### Context: CREATE TABLE table_name_98 (pick VARCHAR, college VARCHAR, round VARCHAR, position VARCHAR, overall VARCHAR) ### Response: ### Response: SELECT COUNT(pick) FROM table_name_98 WHERE position = "ot" AND overall > 91 AND round > 21 AND college = "mississippi"</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 products have the title "Jak 3"? ### Context: CREATE TABLE table_10875694_11 (product_no VARCHAR, title VARCHAR) ### Response: ### Response: SELECT COUNT(product_no) FROM table_10875694_11 WHERE title = "Jak 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 is the name of the circuit where the race xi Syracuse grand prix was held? ### Context: CREATE TABLE table_1140105_6 (circuit VARCHAR, race_name VARCHAR) ### Response: ### Response: SELECT circuit FROM table_1140105_6 WHERE race_name = "XI Syracuse Grand Prix"</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 Gold Medals that has salem blue devils and a Silver Medals less than 1? ### Context: CREATE TABLE table_name_18 (gold_medals INTEGER, ensemble VARCHAR, silver_medals VARCHAR) ### Response: ### Response: SELECT MIN(gold_medals) FROM table_name_18 WHERE ensemble = "salem blue devils" AND silver_medals < 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 attendance at the Travers Stakes in 1977? ### Context: CREATE TABLE table_24089503_1 (travers_stakes VARCHAR, year VARCHAR) ### Response: ### Response: SELECT travers_stakes FROM table_24089503_1 WHERE year = 1977</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 3 with a round 4 of 50? ### Context: CREATE TABLE table_name_39 (round_3 VARCHAR, round_4 VARCHAR) ### Response: ### Response: SELECT round_3 FROM table_name_39 WHERE round_4 = "50"</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 Format of FM 100.5 Licensed to Hope? ### Context: CREATE TABLE table_name_65 (format VARCHAR, notes VARCHAR, frequency VARCHAR) ### Response: ### Response: SELECT format FROM table_name_65 WHERE notes = "licensed to hope" AND frequency = "fm 100.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: Which platform has an Actual version of 0.147? ### Context: CREATE TABLE table_name_38 (platform VARCHAR, actual_version VARCHAR) ### Response: ### Response: SELECT platform FROM table_name_38 WHERE actual_version = "0.147"</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: If the site is sanford stadium • athens, ga, what is the date? ### Context: CREATE TABLE table_26842217_8 (date VARCHAR, site VARCHAR) ### Response: ### Response: SELECT date FROM table_26842217_8 WHERE site = "Sanford Stadium • Athens, GA"</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 rebounds that has conseco fieldhouse 11,964 as the location attendance? ### Context: CREATE TABLE table_name_58 (high_rebounds VARCHAR, location_attendance VARCHAR) ### Response: ### Response: SELECT high_rebounds FROM table_name_58 WHERE location_attendance = "conseco fieldhouse 11,964"</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 lowest period's element is ruthenium? ### Context: CREATE TABLE table_name_28 (period INTEGER, element VARCHAR) ### Response: ### Response: SELECT MIN(period) FROM table_name_28 WHERE element = "ruthenium"</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 maximum leagure for 0 scottish cup ### Context: CREATE TABLE table_17598822_11 (league INTEGER, scottish_cup VARCHAR) ### Response: ### Response: SELECT MAX(league) FROM table_17598822_11 WHERE scottish_cup = 0</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 started round for the competition that had the last match on January 16, 2008? ### Context: CREATE TABLE table_name_57 (started_round VARCHAR, last_match VARCHAR) ### Response: ### Response: SELECT started_round FROM table_name_57 WHERE last_match = "january 16, 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: What was the release date of the feature with a production number of 1018, BR 1352? ### Context: CREATE TABLE table_name_14 (release_date VARCHAR, production_number VARCHAR) ### Response: ### Response: SELECT release_date FROM table_name_14 WHERE production_number = "1018, br 1352"</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 gdp per emissions (in us dollars per ton) is 3903, what is the maximum annual co2 emissions (in thousands of metric tons)? ### Context: CREATE TABLE table_2508175_1 (annual_co2_emissions__in_thousands_of_metric_tons_ INTEGER, gdp_per_emissions__in_us_dollars_per_ton_ VARCHAR) ### Response: ### Response: SELECT MAX(annual_co2_emissions__in_thousands_of_metric_tons_) FROM table_2508175_1 WHERE gdp_per_emissions__in_us_dollars_per_ton_ = 3903</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 participants belong to the type 'Organizer'? ### Context: CREATE TABLE participants (participant_type_code VARCHAR) ### Response: ### Response: SELECT COUNT(*) FROM participants WHERE participant_type_code = 'Organizer'</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 mpg-uk combined with an mpg-uk urban (cold) greater than 26.6, a m5 transmission, a diesel fuel type, and an engine capacity less than 1560? ### Context: CREATE TABLE table_name_89 (mpg_uk_combined VARCHAR, engine_capacity VARCHAR, fuel_type VARCHAR, mpg_uk_urban__cold_ VARCHAR, transmission VARCHAR) ### Response: ### Response: SELECT mpg_uk_combined FROM table_name_89 WHERE mpg_uk_urban__cold_ > 26.6 AND transmission = "m5" AND fuel_type = "diesel" AND engine_capacity < 1560</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 Catalog was released in Germany? ### Context: CREATE TABLE table_name_47 (catalog VARCHAR, region VARCHAR) ### Response: ### Response: SELECT catalog FROM table_name_47 WHERE region = "germany"</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 surface of the tournament where Anna Benzon was the opponent in the final? ### Context: CREATE TABLE table_name_59 (surface VARCHAR, opponent_in_the_final VARCHAR) ### Response: ### Response: SELECT surface FROM table_name_59 WHERE opponent_in_the_final = "anna benzon"</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 date for chicago ### Context: CREATE TABLE table_17355408_4 (date VARCHAR, team VARCHAR) ### Response: ### Response: SELECT date FROM table_17355408_4 WHERE team = "Chicago"</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 subdivides in equivalence for varas 1/5 ### Context: CREATE TABLE table_26538461_2 (subdivides_in VARCHAR, equivalence_in_varas VARCHAR) ### Response: ### Response: SELECT subdivides_in FROM table_26538461_2 WHERE equivalence_in_varas = "1/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 is the fate for 11 april 1944? ### Context: CREATE TABLE table_1220125_4 (fate VARCHAR, commissioned VARCHAR) ### Response: ### Response: SELECT fate FROM table_1220125_4 WHERE commissioned = "11 April 1944"</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 avg/g for john conner when long is less than 25? ### Context: CREATE TABLE table_name_75 (avg_g INTEGER, name VARCHAR, long VARCHAR) ### Response: ### Response: SELECT SUM(avg_g) FROM table_name_75 WHERE name = "john conner" AND long < 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 completion/attempts value for the year with an average per game of 36.5? ### Context: CREATE TABLE table_name_10 (comp_att VARCHAR, avg_g VARCHAR) ### Response: ### Response: SELECT comp_att FROM table_name_10 WHERE avg_g = "36.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: Who is the opponent in the final of the tournament on May 22, 2006? ### Context: CREATE TABLE table_name_88 (opponent_in_final VARCHAR, date VARCHAR) ### Response: ### Response: SELECT opponent_in_final FROM table_name_88 WHERE date = "may 22, 2006"</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 week 6 when week 7, week 4, and week 3 are evicted and week 2 29.35? ### Context: CREATE TABLE table_name_22 (week_6 VARCHAR, week_2 VARCHAR, week_3 VARCHAR, week_7 VARCHAR, week_4 VARCHAR) ### Response: ### Response: SELECT week_6 FROM table_name_22 WHERE week_7 = "evicted" AND week_4 = "evicted" AND week_3 = "evicted" AND week_2 = "29.35"</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 Name, when Only Point is greater than 1, when Catch Taken is greater than 3, when Bonus is greater than 4, and when Total Point is less than 30? ### Context: CREATE TABLE table_name_47 (name VARCHAR, total_point VARCHAR, bonus VARCHAR, only_point VARCHAR, catch_taken VARCHAR) ### Response: ### Response: SELECT name FROM table_name_47 WHERE only_point > 1 AND catch_taken > 3 AND bonus > 4 AND total_point < 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 sum of Poles, when Season is greater than 2004, and when Podiums is less than 1? ### Context: CREATE TABLE table_name_64 (poles INTEGER, season VARCHAR, podiums VARCHAR) ### Response: ### Response: SELECT SUM(poles) FROM table_name_64 WHERE season < 2004 AND podiums < 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 is the wager on August 23, 1992 where vampiro was the winner? ### Context: CREATE TABLE table_name_94 (wager VARCHAR, winner VARCHAR, date VARCHAR) ### Response: ### Response: SELECT wager FROM table_name_94 WHERE winner = "vampiro" AND date = "august 23, 1992"</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 the villain in episode #7? ### Context: CREATE TABLE table_10470082_4 (villains VARCHAR, _number VARCHAR) ### Response: ### Response: SELECT villains FROM table_10470082_4 WHERE _number = 7</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 did the player loaned out on 27 november 2008 move to ? ### Context: CREATE TABLE table_name_65 (moving_to VARCHAR, date_from VARCHAR) ### Response: ### Response: SELECT moving_to FROM table_name_65 WHERE date_from = "27 november 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: What message has hd 186408 as a designation HD? ### Context: CREATE TABLE table_name_75 (message VARCHAR, designation_hd VARCHAR) ### Response: ### Response: SELECT message FROM table_name_75 WHERE designation_hd = "hd 186408"</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: Find the average age of all students living in the each city. ### Context: CREATE TABLE student (city_code VARCHAR, age INTEGER) ### Response: ### Response: SELECT AVG(age), city_code FROM student GROUP BY city_code</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 Tom Kite's to par? ### Context: CREATE TABLE table_name_63 (to_par VARCHAR, player VARCHAR) ### Response: ### Response: SELECT to_par FROM table_name_63 WHERE player = "tom kite"</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 tournament on July 29 hosted by SK Brann? ### Context: CREATE TABLE table_name_5 (tournament VARCHAR, host VARCHAR, date VARCHAR) ### Response: ### Response: SELECT tournament FROM table_name_5 WHERE host = "sk brann" AND date = "july 29"</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 day did North Melbourne play as the home team? ### Context: CREATE TABLE table_name_52 (date VARCHAR, home_team VARCHAR) ### Response: ### Response: SELECT date FROM table_name_52 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: Who had the high rebounds, and how many did he have, for the game played on April 9? ### Context: CREATE TABLE table_name_24 (high_rebounds VARCHAR, date VARCHAR) ### Response: ### Response: SELECT high_rebounds FROM table_name_24 WHERE date = "april 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 is the runner-up where the winning score is –8 (71-69-67-73=280)? ### Context: CREATE TABLE table_name_45 (runner_s__up VARCHAR, winning_score VARCHAR) ### Response: ### Response: SELECT runner_s__up FROM table_name_45 WHERE winning_score = –8(71 - 69 - 67 - 73 = 280)</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: Please show the titles of films and the types of market estimations. ### Context: CREATE TABLE film (Title VARCHAR, Film_ID VARCHAR); CREATE TABLE film_market_estimation (Type VARCHAR, Film_ID VARCHAR) ### Response: ### Response: SELECT T1.Title, T2.Type FROM film AS T1 JOIN film_market_estimation AS T2 ON T1.Film_ID = T2.Film_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: Which Set 3 has a Score of 3–2, and a Set 2 of 25–23, and a Time of 19:00? ### Context: CREATE TABLE table_name_86 (set_3 VARCHAR, time VARCHAR, score VARCHAR, set_2 VARCHAR) ### Response: ### Response: SELECT set_3 FROM table_name_86 WHERE score = "3–2" AND set_2 = "25–23" AND time = "19:00"</s>