training_input
stringlengths 118
1.06k
|
---|
###context:CREATE TABLE services (service_name VARCHAR, service_id VARCHAR); CREATE TABLE first_notification_of_loss (service_id VARCHAR)
###human: Find the name of services that have been used for more than 2 times in first notification of loss.
###assistant: SELECT t2.service_name FROM first_notification_of_loss AS t1 JOIN services AS t2 ON t1.service_id = t2.service_id GROUP BY t1.service_id HAVING COUNT(*) > 2 |
###context:CREATE TABLE settlements (claim_id VARCHAR, settlement_amount INTEGER); CREATE TABLE claims (Effective_Date VARCHAR, claim_id VARCHAR)
###human: What is the effective date of the claim that has the largest amount of total settlement?
###assistant: SELECT t1.Effective_Date FROM claims AS t1 JOIN settlements AS t2 ON t1.claim_id = t2.claim_id GROUP BY t1.claim_id ORDER BY SUM(t2.settlement_amount) DESC LIMIT 1 |
###context:CREATE TABLE customers (customer_id VARCHAR, customer_name VARCHAR); CREATE TABLE customers_policies (customer_id VARCHAR)
###human: How many policies are listed for the customer named "Dayana Robel"?
###assistant: SELECT COUNT(*) FROM customers AS t1 JOIN customers_policies AS t2 ON t1.customer_id = t2.customer_id WHERE t1.customer_name = "Dayana Robel" |
###context:CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE customers_policies (customer_id VARCHAR)
###human: What is the name of the customer who has the most policies listed?
###assistant: SELECT t1.customer_name FROM customers AS t1 JOIN customers_policies AS t2 ON t1.customer_id = t2.customer_id GROUP BY t1.customer_name ORDER BY COUNT(*) DESC LIMIT 1 |
###context:CREATE TABLE customers (customer_id VARCHAR, customer_name VARCHAR); CREATE TABLE available_policies (policy_type_code VARCHAR, policy_id VARCHAR); CREATE TABLE customers_policies (customer_id VARCHAR, policy_id VARCHAR)
###human: What are all the policy types of the customer named "Dayana Robel"?
###assistant: SELECT DISTINCT t3.policy_type_code FROM customers AS t1 JOIN customers_policies AS t2 ON t1.customer_id = t2.customer_id JOIN available_policies AS t3 ON t2.policy_id = t3.policy_id WHERE t1.customer_name = "Dayana Robel" |
###context:CREATE TABLE customers (customer_id VARCHAR, customer_name VARCHAR); CREATE TABLE available_policies (policy_type_code VARCHAR, policy_id VARCHAR); CREATE TABLE customers_policies (customer_id VARCHAR, policy_id VARCHAR)
###human: What are all the policy types of the customer that has the most policies listed?
###assistant: SELECT DISTINCT t3.policy_type_code FROM customers AS t1 JOIN customers_policies AS t2 ON t1.customer_id = t2.customer_id JOIN available_policies AS t3 ON t2.policy_id = t3.policy_id WHERE t1.customer_name = (SELECT t1.customer_name FROM customers AS t1 JOIN customers_policies AS t2 ON t1.customer_id = t2.customer_id GROUP BY t1.customer_name ORDER BY COUNT(*) DESC LIMIT 1) |
###context:CREATE TABLE services (service_name VARCHAR)
###human: List all the services in the alphabetical order.
###assistant: SELECT service_name FROM services ORDER BY service_name |
###context:CREATE TABLE services (Id VARCHAR)
###human: How many services are there?
###assistant: SELECT COUNT(*) FROM services |
###context:CREATE TABLE first_notification_of_loss (customer_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR)
###human: Find the names of users who do not have a first notification of loss record.
###assistant: SELECT customer_name FROM customers EXCEPT SELECT t1.customer_name FROM customers AS t1 JOIN first_notification_of_loss AS t2 ON t1.customer_id = t2.customer_id |
###context:CREATE TABLE first_notification_of_loss (customer_id VARCHAR, service_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE services (service_id VARCHAR, service_name VARCHAR)
###human: Find the names of customers who have used either the service "Close a policy" or the service "Upgrade a policy".
###assistant: SELECT t1.customer_name FROM customers AS t1 JOIN first_notification_of_loss AS t2 ON t1.customer_id = t2.customer_id JOIN services AS t3 ON t2.service_id = t3.service_id WHERE t3.service_name = "Close a policy" OR t3.service_name = "Upgrade a policy" |
###context:CREATE TABLE first_notification_of_loss (customer_id VARCHAR, service_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE services (service_id VARCHAR, service_name VARCHAR)
###human: Find the names of customers who have used both the service "Close a policy" and the service "New policy application".
###assistant: SELECT t1.customer_name FROM customers AS t1 JOIN first_notification_of_loss AS t2 ON t1.customer_id = t2.customer_id JOIN services AS t3 ON t2.service_id = t3.service_id WHERE t3.service_name = "Close a policy" INTERSECT SELECT t1.customer_name FROM customers AS t1 JOIN first_notification_of_loss AS t2 ON t1.customer_id = t2.customer_id JOIN services AS t3 ON t2.service_id = t3.service_id WHERE t3.service_name = "New policy application" |
###context:CREATE TABLE customers (customer_id VARCHAR, customer_name VARCHAR)
###human: Find the IDs of customers whose name contains "Diana".
###assistant: SELECT customer_id FROM customers WHERE customer_name LIKE "%Diana%" |
###context:CREATE TABLE settlements (settlement_amount INTEGER)
###human: What are the maximum and minimum settlement amount on record?
###assistant: SELECT MAX(settlement_amount), MIN(settlement_amount) FROM settlements |
###context:CREATE TABLE customers (customer_id VARCHAR, customer_name VARCHAR)
###human: List all the customers in increasing order of IDs.
###assistant: SELECT customer_id, customer_name FROM customers ORDER BY customer_id |
###context:CREATE TABLE customers (customer_id VARCHAR, customer_name VARCHAR); CREATE TABLE customers_policies (date_opened VARCHAR, date_closed VARCHAR, customer_id VARCHAR)
###human: Retrieve the open and close dates of all the policies associated with the customer whose name contains "Diana"
###assistant: SELECT t2.date_opened, t2.date_closed FROM customers AS t1 JOIN customers_policies AS t2 ON t1.customer_id = t2.customer_id WHERE t1.customer_name LIKE "%Diana%" |
###context:CREATE TABLE enzyme (Id VARCHAR)
###human: How many kinds of enzymes are there?
###assistant: SELECT COUNT(*) FROM enzyme |
###context:CREATE TABLE enzyme (name VARCHAR)
###human: List the name of enzymes in descending lexicographical order.
###assistant: SELECT name FROM enzyme ORDER BY name DESC |
###context:CREATE TABLE enzyme (name VARCHAR, LOCATION VARCHAR)
###human: List the names and the locations that the enzymes can make an effect.
###assistant: SELECT name, LOCATION FROM enzyme |
###context:CREATE TABLE enzyme (OMIM INTEGER)
###human: What is the maximum Online Mendelian Inheritance in Man (OMIM) value of the enzymes?
###assistant: SELECT MAX(OMIM) FROM enzyme |
###context:CREATE TABLE enzyme (product VARCHAR, chromosome VARCHAR, porphyria VARCHAR, LOCATION VARCHAR)
###human: What is the product, chromosome and porphyria related to the enzymes which take effect at the location 'Cytosol'?
###assistant: SELECT product, chromosome, porphyria FROM enzyme WHERE LOCATION = 'Cytosol' |
###context:CREATE TABLE enzyme (name VARCHAR, product VARCHAR)
###human: What are the names of enzymes who does not produce 'Heme'?
###assistant: SELECT name FROM enzyme WHERE product <> 'Heme' |
###context:CREATE TABLE medicine (name VARCHAR, trade_name VARCHAR, FDA_approved VARCHAR)
###human: What are the names and trade names of the medicines which has 'Yes' value in the FDA record?
###assistant: SELECT name, trade_name FROM medicine WHERE FDA_approved = 'Yes' |
###context:CREATE TABLE medicine (id VARCHAR, name VARCHAR); CREATE TABLE medicine_enzyme_interaction (enzyme_id VARCHAR, medicine_id VARCHAR, interaction_type VARCHAR); CREATE TABLE enzyme (name VARCHAR, id VARCHAR)
###human: What are the names of enzymes in the medicine named 'Amisulpride' that can serve as an 'inhibitor'?
###assistant: SELECT T1.name FROM enzyme AS T1 JOIN medicine_enzyme_interaction AS T2 ON T1.id = T2.enzyme_id JOIN medicine AS T3 ON T2.medicine_id = T3.id WHERE T3.name = 'Amisulpride' AND T2.interaction_type = 'inhibitor' |
###context:CREATE TABLE medicine_enzyme_interaction (medicine_id VARCHAR); CREATE TABLE medicine (id VARCHAR, Name VARCHAR)
###human: What are the ids and names of the medicine that can interact with two or more enzymes?
###assistant: SELECT T1.id, T1.Name FROM medicine AS T1 JOIN medicine_enzyme_interaction AS T2 ON T2.medicine_id = T1.id GROUP BY T1.id HAVING COUNT(*) >= 2 |
###context:CREATE TABLE medicine_enzyme_interaction (medicine_id VARCHAR); CREATE TABLE medicine (id VARCHAR, Name VARCHAR, FDA_approved VARCHAR)
###human: What are the ids, names and FDA approval status of medicines in descending order of the number of enzymes that it can interact with.
###assistant: SELECT T1.id, T1.Name, T1.FDA_approved FROM medicine AS T1 JOIN medicine_enzyme_interaction AS T2 ON T2.medicine_id = T1.id GROUP BY T1.id ORDER BY COUNT(*) DESC |
###context:CREATE TABLE medicine_enzyme_interaction (enzyme_id VARCHAR, interaction_type VARCHAR); CREATE TABLE enzyme (id VARCHAR, name VARCHAR)
###human: What is the id and name of the enzyme with most number of medicines that can interact as 'activator'?
###assistant: SELECT T1.id, T1.name FROM enzyme AS T1 JOIN medicine_enzyme_interaction AS T2 ON T1.id = T2.enzyme_id WHERE T2.interaction_type = 'activitor' GROUP BY T1.id ORDER BY COUNT(*) DESC LIMIT 1 |
###context:CREATE TABLE enzyme (id VARCHAR, name VARCHAR); CREATE TABLE medicine (id VARCHAR, name VARCHAR); CREATE TABLE medicine_enzyme_interaction (interaction_type VARCHAR, medicine_id VARCHAR, enzyme_id VARCHAR)
###human: What is the interaction type of the enzyme named 'ALA synthase' and the medicine named 'Aripiprazole'?
###assistant: SELECT T1.interaction_type FROM medicine_enzyme_interaction AS T1 JOIN medicine AS T2 ON T1.medicine_id = T2.id JOIN enzyme AS T3 ON T1.enzyme_id = T3.id WHERE T3.name = 'ALA synthase' AND T2.name = 'Aripiprazole' |
###context:CREATE TABLE medicine_enzyme_interaction (interaction_type VARCHAR)
###human: What is the most common interaction type between enzymes and medicine? And how many are there?
###assistant: SELECT interaction_type, COUNT(*) FROM medicine_enzyme_interaction GROUP BY interaction_type ORDER BY COUNT(*) DESC LIMIT 1 |
###context:CREATE TABLE medicine (FDA_approved VARCHAR)
###human: How many medicines have the FDA approval status 'No' ?
###assistant: SELECT COUNT(*) FROM medicine WHERE FDA_approved = 'No' |
###context:CREATE TABLE medicine_enzyme_interaction (id VARCHAR, enzyme_id VARCHAR); CREATE TABLE enzyme (id VARCHAR, enzyme_id VARCHAR)
###human: How many enzymes do not have any interactions?
###assistant: SELECT COUNT(*) FROM enzyme WHERE NOT id IN (SELECT enzyme_id FROM medicine_enzyme_interaction) |
###context:CREATE TABLE medicine (id VARCHAR, trade_name VARCHAR); CREATE TABLE medicine_enzyme_interaction (medicine_id VARCHAR)
###human: What is the id and trade name of the medicines can interact with at least 3 enzymes?
###assistant: SELECT T1.id, T1.trade_name FROM medicine AS T1 JOIN medicine_enzyme_interaction AS T2 ON T2.medicine_id = T1.id GROUP BY T1.id HAVING COUNT(*) >= 3 |
###context:CREATE TABLE enzyme (name VARCHAR, location VARCHAR, product VARCHAR, id VARCHAR); CREATE TABLE medicine_enzyme_interaction (enzyme_id VARCHAR, interaction_type VARCHAR)
###human: What are the distinct name, location and products of the enzymes which has any 'inhibitor' interaction?
###assistant: SELECT DISTINCT T1.name, T1.location, T1.product FROM enzyme AS T1 JOIN medicine_enzyme_interaction AS T2 ON T2.enzyme_id = T1.id WHERE T2.interaction_type = 'inhibitor' |
###context:CREATE TABLE medicine (name VARCHAR, trade_name VARCHAR, id VARCHAR); CREATE TABLE medicine_enzyme_interaction (medicine_id VARCHAR)
###human: List the medicine name and trade name which can both interact as 'inhibitor' and 'activitor' with enzymes.
###assistant: SELECT T1.name, T1.trade_name FROM medicine AS T1 JOIN medicine_enzyme_interaction AS T2 ON T2.medicine_id = T1.id WHERE interaction_type = 'inhibitor' INTERSECT SELECT T1.name, T1.trade_name FROM medicine AS T1 JOIN medicine_enzyme_interaction AS T2 ON T2.medicine_id = T1.id WHERE interaction_type = 'activitor' |
###context:CREATE TABLE medicine (name VARCHAR, trade_name VARCHAR); CREATE TABLE medicine_enzyme_interaction (medicine_id VARCHAR, enzyme_id VARCHAR); CREATE TABLE medicine (name VARCHAR, trade_name VARCHAR, id VARCHAR); CREATE TABLE enzyme (id VARCHAR, product VARCHAR)
###human: Show the medicine names and trade names that cannot interact with the enzyme with product 'Heme'.
###assistant: SELECT name, trade_name FROM medicine EXCEPT SELECT T1.name, T1.trade_name FROM medicine AS T1 JOIN medicine_enzyme_interaction AS T2 ON T2.medicine_id = T1.id JOIN enzyme AS T3 ON T3.id = T2.enzyme_id WHERE T3.product = 'Protoporphyrinogen IX' |
###context:CREATE TABLE medicine (FDA_approved VARCHAR)
###human: How many distinct FDA approval statuses are there for the medicines?
###assistant: SELECT COUNT(DISTINCT FDA_approved) FROM medicine |
###context:CREATE TABLE enzyme (name VARCHAR)
###human: Which enzyme names have the substring "ALA"?
###assistant: SELECT name FROM enzyme WHERE name LIKE "%ALA%" |
###context:CREATE TABLE medicine (trade_name VARCHAR)
###human: find the number of medicines offered by each trade.
###assistant: SELECT trade_name, COUNT(*) FROM medicine GROUP BY trade_name |
###context:CREATE TABLE university (school VARCHAR, nickname VARCHAR, founded VARCHAR)
###human: List all schools and their nicknames in the order of founded year.
###assistant: SELECT school, nickname FROM university ORDER BY founded |
###context:CREATE TABLE university (school VARCHAR, LOCATION VARCHAR, affiliation VARCHAR)
###human: List all public schools and their locations.
###assistant: SELECT school, LOCATION FROM university WHERE affiliation = 'Public' |
###context:CREATE TABLE university (founded VARCHAR, enrollment VARCHAR)
###human: When was the school with the largest enrollment founded?
###assistant: SELECT founded FROM university ORDER BY enrollment DESC LIMIT 1 |
###context:CREATE TABLE university (founded VARCHAR, affiliation VARCHAR)
###human: Find the founded year of the newest non public school.
###assistant: SELECT founded FROM university WHERE affiliation <> 'Public' ORDER BY founded DESC LIMIT 1 |
###context:CREATE TABLE basketball_match (school_id VARCHAR)
###human: How many schools are in the basketball match?
###assistant: SELECT COUNT(DISTINCT school_id) FROM basketball_match |
###context:CREATE TABLE basketball_match (acc_percent VARCHAR)
###human: What is the highest acc percent score in the competition?
###assistant: SELECT acc_percent FROM basketball_match ORDER BY acc_percent DESC LIMIT 1 |
###context:CREATE TABLE basketball_match (school_id VARCHAR, acc_percent VARCHAR); CREATE TABLE university (Primary_conference VARCHAR, school_id VARCHAR)
###human: What is the primary conference of the school that has the lowest acc percent score in the competition?
###assistant: SELECT t1.Primary_conference FROM university AS t1 JOIN basketball_match AS t2 ON t1.school_id = t2.school_id ORDER BY t2.acc_percent LIMIT 1 |
###context:CREATE TABLE university (school_id VARCHAR, founded VARCHAR); CREATE TABLE basketball_match (team_name VARCHAR, ACC_Regular_Season VARCHAR, school_id VARCHAR)
###human: What is the team name and acc regular season score of the school that was founded for the longest time?
###assistant: SELECT t2.team_name, t2.ACC_Regular_Season FROM university AS t1 JOIN basketball_match AS t2 ON t1.school_id = t2.school_id ORDER BY t1.founded LIMIT 1 |
###context:CREATE TABLE basketball_match (All_Games VARCHAR, school_id VARCHAR); CREATE TABLE university (location VARCHAR, school_id VARCHAR)
###human: Find the location and all games score of the school that has Clemson as its team name.
###assistant: SELECT t2.All_Games, t1.location FROM university AS t1 JOIN basketball_match AS t2 ON t1.school_id = t2.school_id WHERE team_name = 'Clemson' |
###context:CREATE TABLE university (enrollment INTEGER, founded INTEGER)
###human: What are the average enrollment size of the universities that are founded before 1850?
###assistant: SELECT AVG(enrollment) FROM university WHERE founded < 1850 |
###context:CREATE TABLE university (enrollment VARCHAR, primary_conference VARCHAR, founded VARCHAR)
###human: Show the enrollment and primary_conference of the oldest college.
###assistant: SELECT enrollment, primary_conference FROM university ORDER BY founded LIMIT 1 |
###context:CREATE TABLE university (enrollment INTEGER)
###human: What is the total and minimum enrollment of all schools?
###assistant: SELECT SUM(enrollment), MIN(enrollment) FROM university |
###context:CREATE TABLE university (affiliation VARCHAR, enrollment INTEGER)
###human: Find the total student enrollment for different affiliation type schools.
###assistant: SELECT SUM(enrollment), affiliation FROM university GROUP BY affiliation |
###context:CREATE TABLE university (school_id VARCHAR); CREATE TABLE basketball_match (school_id VARCHAR)
###human: How many schools do not participate in the basketball match?
###assistant: SELECT COUNT(*) FROM university WHERE NOT school_id IN (SELECT school_id FROM basketball_match) |
###context:CREATE TABLE university (school VARCHAR, founded VARCHAR, affiliation VARCHAR)
###human: Find the schools that were either founded after 1850 or public.
###assistant: SELECT school FROM university WHERE founded > 1850 OR affiliation = 'Public' |
###context:CREATE TABLE university (affiliation VARCHAR)
###human: Find how many different affiliation types there are.
###assistant: SELECT COUNT(DISTINCT affiliation) FROM university |
###context:CREATE TABLE university (LOCATION VARCHAR)
###human: Find how many school locations have the word 'NY'.
###assistant: SELECT COUNT(*) FROM university WHERE LOCATION LIKE "%NY%" |
###context:CREATE TABLE university (school_id VARCHAR); CREATE TABLE basketball_match (team_name VARCHAR, school_id VARCHAR); CREATE TABLE university (enrollment INTEGER)
###human: Find the team names of the universities whose enrollments are smaller than the average enrollment size.
###assistant: SELECT t2.team_name FROM university AS t1 JOIN basketball_match AS t2 ON t1.school_id = t2.school_id WHERE enrollment < (SELECT AVG(enrollment) FROM university) |
###context:CREATE TABLE university (affiliation VARCHAR, enrollment INTEGER)
###human: Find the number of universities that have over a 20000 enrollment size for each affiliation type.
###assistant: SELECT COUNT(*), affiliation FROM university WHERE enrollment > 20000 GROUP BY affiliation |
###context:CREATE TABLE university (affiliation VARCHAR, Enrollment INTEGER, founded INTEGER)
###human: Find the total number of students enrolled in the colleges that were founded after the year of 1850 for each affiliation type.
###assistant: SELECT SUM(Enrollment), affiliation FROM university WHERE founded > 1850 GROUP BY affiliation |
###context:CREATE TABLE university (Enrollment INTEGER)
###human: What is the maximum enrollment across all schools?
###assistant: SELECT MAX(Enrollment) FROM university |
###context:CREATE TABLE basketball_match (Id VARCHAR)
###human: List all information regarding the basketball match.
###assistant: SELECT * FROM basketball_match |
###context:CREATE TABLE basketball_match (team_name VARCHAR, All_Home VARCHAR)
###human: List names of all teams in the basketball competition, ordered by all home scores in descending order.
###assistant: SELECT team_name FROM basketball_match ORDER BY All_Home DESC |
###context:CREATE TABLE chip_model (Model_name VARCHAR, Launch_year INTEGER)
###human: the names of models that launched between 2002 and 2004.
###assistant: SELECT Model_name FROM chip_model WHERE Launch_year BETWEEN 2002 AND 2004 |
###context:CREATE TABLE chip_model (Model_name VARCHAR, RAM_MiB VARCHAR)
###human: Which model has the least amount of RAM? List the model name and the amount of RAM.
###assistant: SELECT Model_name, RAM_MiB FROM chip_model ORDER BY RAM_MiB LIMIT 1 |
###context:CREATE TABLE phone (chip_model VARCHAR, screen_mode VARCHAR, Hardware_Model_name VARCHAR)
###human: What are the chip model and screen mode of the phone with hardware model name "LG-P760"?
###assistant: SELECT chip_model, screen_mode FROM phone WHERE Hardware_Model_name = "LG-P760" |
###context:CREATE TABLE phone (Company_name VARCHAR)
###human: How many phone hardware models are produced by the company named "Nokia Corporation"?
###assistant: SELECT COUNT(*) FROM phone WHERE Company_name = "Nokia Corporation" |
###context:CREATE TABLE phone (chip_model VARCHAR, Company_name VARCHAR); CREATE TABLE chip_model (RAM_MiB INTEGER, Model_name VARCHAR)
###human: What is maximum and minimum RAM size of phone produced by company named "Nokia Corporation"?
###assistant: SELECT MAX(T1.RAM_MiB), MIN(T1.RAM_MiB) FROM chip_model AS T1 JOIN phone AS T2 ON T1.Model_name = T2.chip_model WHERE T2.Company_name = "Nokia Corporation" |
###context:CREATE TABLE phone (chip_model VARCHAR, Company_name VARCHAR); CREATE TABLE chip_model (ROM_MiB INTEGER, Model_name VARCHAR)
###human: What is the average ROM size of phones produced by the company named "Nokia Corporation"?
###assistant: SELECT AVG(T1.ROM_MiB) FROM chip_model AS T1 JOIN phone AS T2 ON T1.Model_name = T2.chip_model WHERE T2.Company_name = "Nokia Corporation" |
###context:CREATE TABLE chip_model (Model_name VARCHAR, Launch_year VARCHAR, RAM_MiB VARCHAR); CREATE TABLE phone (Hardware_Model_name VARCHAR, Company_name VARCHAR, chip_model VARCHAR)
###human: List the hardware model name and company name for all the phones that were launched in year 2002 or have RAM size greater than 32.
###assistant: SELECT T2.Hardware_Model_name, T2.Company_name FROM chip_model AS T1 JOIN phone AS T2 ON T1.Model_name = T2.chip_model WHERE T1.Launch_year = 2002 OR T1.RAM_MiB > 32 |
###context:CREATE TABLE phone (Hardware_Model_name VARCHAR, Company_name VARCHAR, Accreditation_type VARCHAR)
###human: Find all phones that have word 'Full' in their accreditation types. List the Hardware Model name and Company name.
###assistant: SELECT Hardware_Model_name, Company_name FROM phone WHERE Accreditation_type LIKE 'Full' |
###context:CREATE TABLE phone (screen_mode VARCHAR, Hardware_Model_name VARCHAR); CREATE TABLE screen_mode (Char_cells VARCHAR, Pixels VARCHAR, Hardware_colours VARCHAR, Graphics_mode VARCHAR)
###human: Find the Char cells, Pixels and Hardware colours for the screen of the phone whose hardware model name is "LG-P760".
###assistant: SELECT T1.Char_cells, T1.Pixels, T1.Hardware_colours FROM screen_mode AS T1 JOIN phone AS T2 ON T1.Graphics_mode = T2.screen_mode WHERE T2.Hardware_Model_name = "LG-P760" |
###context:CREATE TABLE phone (Hardware_Model_name VARCHAR, Company_name VARCHAR, screen_mode VARCHAR); CREATE TABLE screen_mode (Graphics_mode VARCHAR, Type VARCHAR)
###human: List the hardware model name and company name for the phone whose screen mode type is "Graphics."
###assistant: SELECT T2.Hardware_Model_name, T2.Company_name FROM screen_mode AS T1 JOIN phone AS T2 ON T1.Graphics_mode = T2.screen_mode WHERE T1.Type = "Graphics" |
###context:CREATE TABLE phone (Company_name VARCHAR)
###human: Find the name of the company that has the least number of phone models. List the company name and the number of phone model produced by that company.
###assistant: SELECT Company_name, COUNT(*) FROM phone GROUP BY Company_name ORDER BY COUNT(*) LIMIT 1 |
###context:CREATE TABLE phone (Company_name VARCHAR)
###human: List the name of the company that produced more than one phone model.
###assistant: SELECT Company_name FROM phone GROUP BY Company_name HAVING COUNT(*) > 1 |
###context:CREATE TABLE screen_mode (used_kb INTEGER)
###human: List the maximum, minimum and average number of used kb in screen mode.
###assistant: SELECT MAX(used_kb), MIN(used_kb), AVG(used_kb) FROM screen_mode |
###context:CREATE TABLE chip_model (Model_name VARCHAR, Launch_year VARCHAR, RAM_MiB VARCHAR); CREATE TABLE phone (Hardware_Model_name VARCHAR, chip_model VARCHAR)
###human: List the name of the phone model launched in year 2002 and with the highest RAM size.
###assistant: SELECT T2.Hardware_Model_name FROM chip_model AS T1 JOIN phone AS T2 ON T1.Model_name = T2.chip_model WHERE T1.Launch_year = 2002 ORDER BY T1.RAM_MiB DESC LIMIT 1 |
###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)
###human: What are the wifi and screen mode type of the hardware model named "LG-P760"?
###assistant: 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" |
###context:CREATE TABLE chip_model (Model_name VARCHAR, RAM_MiB VARCHAR); CREATE TABLE phone (Hardware_Model_name VARCHAR, chip_model VARCHAR, screen_mode VARCHAR); CREATE TABLE screen_mode (Graphics_mode VARCHAR, Type VARCHAR)
###human: List the hardware model name for the phones that have screen mode type "Text" or RAM size greater than 32.
###assistant: SELECT T2.Hardware_Model_name 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 T3.Type = "Text" OR T1.RAM_MiB > 32 |
###context:CREATE TABLE phone (Hardware_Model_name VARCHAR, screen_mode VARCHAR); CREATE TABLE screen_mode (Graphics_mode VARCHAR, Type VARCHAR)
###human: List the hardware model name for the phones that were produced by "Nokia Corporation" or whose screen mode type is "Graphics."
###assistant: SELECT DISTINCT T2.Hardware_Model_name FROM screen_mode AS T1 JOIN phone AS T2 ON T1.Graphics_mode = T2.screen_mode WHERE T1.Type = "Graphics" OR t2.Company_name = "Nokia Corporation" |
###context:CREATE TABLE phone (Hardware_Model_name VARCHAR, screen_mode VARCHAR); CREATE TABLE screen_mode (Graphics_mode VARCHAR, Type VARCHAR)
###human: List the hardware model name for the phons that were produced by "Nokia Corporation" but whose screen mode type is not Text.
###assistant: SELECT DISTINCT T2.Hardware_Model_name FROM screen_mode AS T1 JOIN phone AS T2 ON T1.Graphics_mode = T2.screen_mode WHERE t2.Company_name = "Nokia Corporation" AND T1.Type <> "Text" |
###context:CREATE TABLE phone (Hardware_Model_name VARCHAR, Company_name VARCHAR, screen_mode VARCHAR); CREATE TABLE screen_mode (Graphics_mode VARCHAR, used_kb INTEGER)
###human: List the phone hardware model and company name for the phones whose screen usage in kb is between 10 and 15.
###assistant: SELECT DISTINCT T2.Hardware_Model_name, T2.Company_name FROM screen_mode AS T1 JOIN phone AS T2 ON T1.Graphics_mode = T2.screen_mode WHERE T1.used_kb BETWEEN 10 AND 15 |
###context:CREATE TABLE phone (Accreditation_type VARCHAR)
###human: Find the number of phones for each accreditation type.
###assistant: SELECT Accreditation_type, COUNT(*) FROM phone GROUP BY Accreditation_type |
###context:CREATE TABLE phone (Accreditation_level VARCHAR)
###human: Find the accreditation level that more than 3 phones use.
###assistant: SELECT Accreditation_level FROM phone GROUP BY Accreditation_level HAVING COUNT(*) > 3 |
###context:CREATE TABLE chip_model (Id VARCHAR)
###human: Find the details for all chip models.
###assistant: SELECT * FROM chip_model |
###context:CREATE TABLE chip_model (wifi VARCHAR)
###human: How many models do not have the wifi function?
###assistant: SELECT COUNT(*) FROM chip_model WHERE wifi = 'No' |
###context:CREATE TABLE chip_model (model_name VARCHAR, launch_year VARCHAR)
###human: List all the model names sorted by their launch year.
###assistant: SELECT model_name FROM chip_model ORDER BY launch_year |
###context:CREATE TABLE chip_model (RAM_MiB INTEGER, model_name VARCHAR, chip_model VARCHAR); CREATE TABLE phone (RAM_MiB INTEGER, model_name VARCHAR, chip_model VARCHAR)
###human: Find the average ram mib size of the chip models that are never used by any phone.
###assistant: SELECT AVG(RAM_MiB) FROM chip_model WHERE NOT model_name IN (SELECT chip_model FROM phone) |
###context:CREATE TABLE chip_model (model_name VARCHAR, chip_model VARCHAR, Accreditation_type VARCHAR); CREATE TABLE phone (model_name VARCHAR, chip_model VARCHAR, Accreditation_type VARCHAR)
###human: Find the names of the chip models that are not used by any phone with full accreditation type.
###assistant: SELECT model_name FROM chip_model EXCEPT SELECT chip_model FROM phone WHERE Accreditation_type = 'Full' |
###context:CREATE TABLE phone (screen_mode VARCHAR, Accreditation_type VARCHAR); CREATE TABLE screen_mode (pixels VARCHAR, Graphics_mode VARCHAR)
###human: Find the pixels of the screen modes that are used by both phones with full accreditation types and phones with Provisional accreditation types.
###assistant: SELECT t1.pixels FROM screen_mode AS t1 JOIN phone AS t2 ON t1.Graphics_mode = t2.screen_mode WHERE t2.Accreditation_type = 'Provisional' INTERSECT SELECT t1.pixels FROM screen_mode AS t1 JOIN phone AS t2 ON t1.Graphics_mode = t2.screen_mode WHERE t2.Accreditation_type = 'Full' |
###context:CREATE TABLE country (Id VARCHAR)
###human: How many countries are there in total?
###assistant: SELECT COUNT(*) FROM country |
###context:CREATE TABLE country (Country_name VARCHAR, Capital VARCHAR)
###human: Show the country name and capital of all countries.
###assistant: SELECT Country_name, Capital FROM country |
###context:CREATE TABLE country (Official_native_language VARCHAR)
###human: Show all official native languages that contain the word "English".
###assistant: SELECT Official_native_language FROM country WHERE Official_native_language LIKE "%English%" |
###context:CREATE TABLE match_season (POSITION VARCHAR)
###human: Show all distinct positions of matches.
###assistant: SELECT DISTINCT POSITION FROM match_season |
###context:CREATE TABLE match_season (Player VARCHAR, College VARCHAR)
###human: Show the players from college UCLA.
###assistant: SELECT Player FROM match_season WHERE College = "UCLA" |
###context:CREATE TABLE match_season (POSITION VARCHAR, College VARCHAR)
###human: Show the distinct position of players from college UCLA or Duke.
###assistant: SELECT DISTINCT POSITION FROM match_season WHERE College = "UCLA" OR College = "Duke" |
###context:CREATE TABLE match_season (Draft_Pick_Number VARCHAR, Draft_Class VARCHAR, POSITION VARCHAR)
###human: Show the draft pick numbers and draft classes of players whose positions are defenders.
###assistant: SELECT Draft_Pick_Number, Draft_Class FROM match_season WHERE POSITION = "Defender" |
###context:CREATE TABLE match_season (Team VARCHAR)
###human: How many distinct teams are involved in match seasons?
###assistant: SELECT COUNT(DISTINCT Team) FROM match_season |
###context:CREATE TABLE player (Player VARCHAR, Years_Played VARCHAR)
###human: Show the players and the years played.
###assistant: SELECT Player, Years_Played FROM player |
###context:CREATE TABLE Team (Name VARCHAR)
###human: Show all team names.
###assistant: SELECT Name FROM Team |
###context:CREATE TABLE match_season (Season VARCHAR, Player VARCHAR, Country VARCHAR); CREATE TABLE country (Country_name VARCHAR, Country_id VARCHAR)
###human: Show the season, the player, and the name of the country that player belongs to.
###assistant: SELECT T2.Season, T2.Player, T1.Country_name FROM country AS T1 JOIN match_season AS T2 ON T1.Country_id = T2.Country |
###context:CREATE TABLE country (Country_id VARCHAR, Country_name VARCHAR); CREATE TABLE match_season (Player VARCHAR, Country VARCHAR)
###human: Which players are from Indonesia?
###assistant: SELECT T2.Player FROM country AS T1 JOIN match_season AS T2 ON T1.Country_id = T2.Country WHERE T1.Country_name = "Indonesia" |
###context:CREATE TABLE country (Country_id VARCHAR, Capital VARCHAR); CREATE TABLE match_season (Position VARCHAR, Country VARCHAR)
###human: What are the distinct positions of the players from a country whose capital is Dublin?
###assistant: SELECT DISTINCT T2.Position FROM country AS T1 JOIN match_season AS T2 ON T1.Country_id = T2.Country WHERE T1.Capital = "Dublin" |