Unnamed: 0
int64
0
60k
text
stringlengths
109
1.06k
500
<question>: Find the name of services that have been used for more than 2 times in first notification of loss. <context>: CREATE TABLE services (service_name VARCHAR, service_id VARCHAR); CREATE TABLE first_notification_of_loss (service_id VARCHAR) <answer>: 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
501
<question>: What is the effective date of the claim that has the largest amount of total settlement? <context>: CREATE TABLE settlements (claim_id VARCHAR, settlement_amount INTEGER); CREATE TABLE claims (Effective_Date VARCHAR, claim_id VARCHAR) <answer>: 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
502
<question>: How many policies are listed for the customer named "Dayana Robel"? <context>: CREATE TABLE customers (customer_id VARCHAR, customer_name VARCHAR); CREATE TABLE customers_policies (customer_id VARCHAR) <answer>: SELECT COUNT(*) FROM customers AS t1 JOIN customers_policies AS t2 ON t1.customer_id = t2.customer_id WHERE t1.customer_name = "Dayana Robel"
503
<question>: What is the name of the customer who has the most policies listed? <context>: CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE customers_policies (customer_id VARCHAR) <answer>: 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
504
<question>: What are all the policy types of the customer named "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) <answer>: 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"
505
<question>: What are all the policy types of the customer that has the most policies listed? <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) <answer>: 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)
506
<question>: List all the services in the alphabetical order. <context>: CREATE TABLE services (service_name VARCHAR) <answer>: SELECT service_name FROM services ORDER BY service_name
507
<question>: How many services are there? <context>: CREATE TABLE services (Id VARCHAR) <answer>: SELECT COUNT(*) FROM services
508
<question>: Find the names of users who do not have a first notification of loss record. <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) <answer>: 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
509
<question>: Find the names of customers who have used either the service "Close a policy" or the service "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) <answer>: 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"
510
<question>: Find the names of customers who have used both the service "Close a policy" and the service "New policy application". <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) <answer>: 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"
511
<question>: Find the IDs of customers whose name contains "Diana". <context>: CREATE TABLE customers (customer_id VARCHAR, customer_name VARCHAR) <answer>: SELECT customer_id FROM customers WHERE customer_name LIKE "%Diana%"
512
<question>: What are the maximum and minimum settlement amount on record? <context>: CREATE TABLE settlements (settlement_amount INTEGER) <answer>: SELECT MAX(settlement_amount), MIN(settlement_amount) FROM settlements
513
<question>: List all the customers in increasing order of IDs. <context>: CREATE TABLE customers (customer_id VARCHAR, customer_name VARCHAR) <answer>: SELECT customer_id, customer_name FROM customers ORDER BY customer_id
514
<question>: Retrieve the open and close dates of all the policies associated with the customer whose name contains "Diana" <context>: CREATE TABLE customers (customer_id VARCHAR, customer_name VARCHAR); CREATE TABLE customers_policies (date_opened VARCHAR, date_closed VARCHAR, customer_id VARCHAR) <answer>: 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%"
515
<question>: How many kinds of enzymes are there? <context>: CREATE TABLE enzyme (Id VARCHAR) <answer>: SELECT COUNT(*) FROM enzyme
516
<question>: List the name of enzymes in descending lexicographical order. <context>: CREATE TABLE enzyme (name VARCHAR) <answer>: SELECT name FROM enzyme ORDER BY name DESC
517
<question>: List the names and the locations that the enzymes can make an effect. <context>: CREATE TABLE enzyme (name VARCHAR, LOCATION VARCHAR) <answer>: SELECT name, LOCATION FROM enzyme
518
<question>: What is the maximum Online Mendelian Inheritance in Man (OMIM) value of the enzymes? <context>: CREATE TABLE enzyme (OMIM INTEGER) <answer>: SELECT MAX(OMIM) FROM enzyme
519
<question>: What is the product, chromosome and porphyria related to the enzymes which take effect at the location 'Cytosol'? <context>: CREATE TABLE enzyme (product VARCHAR, chromosome VARCHAR, porphyria VARCHAR, LOCATION VARCHAR) <answer>: SELECT product, chromosome, porphyria FROM enzyme WHERE LOCATION = 'Cytosol'
520
<question>: What are the names of enzymes who does not produce 'Heme'? <context>: CREATE TABLE enzyme (name VARCHAR, product VARCHAR) <answer>: SELECT name FROM enzyme WHERE product <> 'Heme'
521
<question>: What are the names and trade names of the medicines which has 'Yes' value in the FDA record? <context>: CREATE TABLE medicine (name VARCHAR, trade_name VARCHAR, FDA_approved VARCHAR) <answer>: SELECT name, trade_name FROM medicine WHERE FDA_approved = 'Yes'
522
<question>: What are the names of enzymes in the medicine named 'Amisulpride' that can serve as an 'inhibitor'? <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) <answer>: 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'
523
<question>: What are the ids and names of the medicine that can interact with two or more enzymes? <context>: CREATE TABLE medicine_enzyme_interaction (medicine_id VARCHAR); CREATE TABLE medicine (id VARCHAR, Name VARCHAR) <answer>: 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
524
<question>: What are the ids, names and FDA approval status of medicines in descending order of the number of enzymes that it can interact with. <context>: CREATE TABLE medicine_enzyme_interaction (medicine_id VARCHAR); CREATE TABLE medicine (id VARCHAR, Name VARCHAR, FDA_approved VARCHAR) <answer>: 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
525
<question>: What is the id and name of the enzyme with most number of medicines that can interact as 'activator'? <context>: CREATE TABLE medicine_enzyme_interaction (enzyme_id VARCHAR, interaction_type VARCHAR); CREATE TABLE enzyme (id VARCHAR, name VARCHAR) <answer>: 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
526
<question>: What is the interaction type of the enzyme named 'ALA synthase' and the medicine named 'Aripiprazole'? <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) <answer>: 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'
527
<question>: What is the most common interaction type between enzymes and medicine? And how many are there? <context>: CREATE TABLE medicine_enzyme_interaction (interaction_type VARCHAR) <answer>: SELECT interaction_type, COUNT(*) FROM medicine_enzyme_interaction GROUP BY interaction_type ORDER BY COUNT(*) DESC LIMIT 1
528
<question>: How many medicines have the FDA approval status 'No' ? <context>: CREATE TABLE medicine (FDA_approved VARCHAR) <answer>: SELECT COUNT(*) FROM medicine WHERE FDA_approved = 'No'
529
<question>: How many enzymes do not have any interactions? <context>: CREATE TABLE medicine_enzyme_interaction (id VARCHAR, enzyme_id VARCHAR); CREATE TABLE enzyme (id VARCHAR, enzyme_id VARCHAR) <answer>: SELECT COUNT(*) FROM enzyme WHERE NOT id IN (SELECT enzyme_id FROM medicine_enzyme_interaction)
530
<question>: What is the id and trade name of the medicines can interact with at least 3 enzymes? <context>: CREATE TABLE medicine (id VARCHAR, trade_name VARCHAR); CREATE TABLE medicine_enzyme_interaction (medicine_id VARCHAR) <answer>: 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
531
<question>: What are the distinct name, location and products of the enzymes which has any 'inhibitor' interaction? <context>: CREATE TABLE enzyme (name VARCHAR, location VARCHAR, product VARCHAR, id VARCHAR); CREATE TABLE medicine_enzyme_interaction (enzyme_id VARCHAR, interaction_type VARCHAR) <answer>: 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'
532
<question>: List the medicine name and trade name which can both interact as 'inhibitor' and 'activitor' with enzymes. <context>: CREATE TABLE medicine (name VARCHAR, trade_name VARCHAR, id VARCHAR); CREATE TABLE medicine_enzyme_interaction (medicine_id VARCHAR) <answer>: 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'
533
<question>: Show the medicine names and trade names that cannot interact with the enzyme with product 'Heme'. <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) <answer>: 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'
534
<question>: How many distinct FDA approval statuses are there for the medicines? <context>: CREATE TABLE medicine (FDA_approved VARCHAR) <answer>: SELECT COUNT(DISTINCT FDA_approved) FROM medicine
535
<question>: Which enzyme names have the substring "ALA"? <context>: CREATE TABLE enzyme (name VARCHAR) <answer>: SELECT name FROM enzyme WHERE name LIKE "%ALA%"
536
<question>: find the number of medicines offered by each trade. <context>: CREATE TABLE medicine (trade_name VARCHAR) <answer>: SELECT trade_name, COUNT(*) FROM medicine GROUP BY trade_name
537
<question>: List all schools and their nicknames in the order of founded year. <context>: CREATE TABLE university (school VARCHAR, nickname VARCHAR, founded VARCHAR) <answer>: SELECT school, nickname FROM university ORDER BY founded
538
<question>: List all public schools and their locations. <context>: CREATE TABLE university (school VARCHAR, LOCATION VARCHAR, affiliation VARCHAR) <answer>: SELECT school, LOCATION FROM university WHERE affiliation = 'Public'
539
<question>: When was the school with the largest enrollment founded? <context>: CREATE TABLE university (founded VARCHAR, enrollment VARCHAR) <answer>: SELECT founded FROM university ORDER BY enrollment DESC LIMIT 1
540
<question>: Find the founded year of the newest non public school. <context>: CREATE TABLE university (founded VARCHAR, affiliation VARCHAR) <answer>: SELECT founded FROM university WHERE affiliation <> 'Public' ORDER BY founded DESC LIMIT 1
541
<question>: How many schools are in the basketball match? <context>: CREATE TABLE basketball_match (school_id VARCHAR) <answer>: SELECT COUNT(DISTINCT school_id) FROM basketball_match
542
<question>: What is the highest acc percent score in the competition? <context>: CREATE TABLE basketball_match (acc_percent VARCHAR) <answer>: SELECT acc_percent FROM basketball_match ORDER BY acc_percent DESC LIMIT 1
543
<question>: What is the primary conference of the school that has the lowest acc percent score in the competition? <context>: CREATE TABLE basketball_match (school_id VARCHAR, acc_percent VARCHAR); CREATE TABLE university (Primary_conference VARCHAR, school_id VARCHAR) <answer>: 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
544
<question>: What is the team name and acc regular season score of the school that was founded for the longest time? <context>: CREATE TABLE university (school_id VARCHAR, founded VARCHAR); CREATE TABLE basketball_match (team_name VARCHAR, ACC_Regular_Season VARCHAR, school_id VARCHAR) <answer>: 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
545
<question>: Find the location and all games score of the school that has Clemson as its team name. <context>: CREATE TABLE basketball_match (All_Games VARCHAR, school_id VARCHAR); CREATE TABLE university (location VARCHAR, school_id VARCHAR) <answer>: 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'
546
<question>: What are the average enrollment size of the universities that are founded before 1850? <context>: CREATE TABLE university (enrollment INTEGER, founded INTEGER) <answer>: SELECT AVG(enrollment) FROM university WHERE founded < 1850
547
<question>: Show the enrollment and primary_conference of the oldest college. <context>: CREATE TABLE university (enrollment VARCHAR, primary_conference VARCHAR, founded VARCHAR) <answer>: SELECT enrollment, primary_conference FROM university ORDER BY founded LIMIT 1
548
<question>: What is the total and minimum enrollment of all schools? <context>: CREATE TABLE university (enrollment INTEGER) <answer>: SELECT SUM(enrollment), MIN(enrollment) FROM university
549
<question>: Find the total student enrollment for different affiliation type schools. <context>: CREATE TABLE university (affiliation VARCHAR, enrollment INTEGER) <answer>: SELECT SUM(enrollment), affiliation FROM university GROUP BY affiliation
550
<question>: How many schools do not participate in the basketball match? <context>: CREATE TABLE university (school_id VARCHAR); CREATE TABLE basketball_match (school_id VARCHAR) <answer>: SELECT COUNT(*) FROM university WHERE NOT school_id IN (SELECT school_id FROM basketball_match)
551
<question>: Find the schools that were either founded after 1850 or public. <context>: CREATE TABLE university (school VARCHAR, founded VARCHAR, affiliation VARCHAR) <answer>: SELECT school FROM university WHERE founded > 1850 OR affiliation = 'Public'
552
<question>: Find how many different affiliation types there are. <context>: CREATE TABLE university (affiliation VARCHAR) <answer>: SELECT COUNT(DISTINCT affiliation) FROM university
553
<question>: Find how many school locations have the word 'NY'. <context>: CREATE TABLE university (LOCATION VARCHAR) <answer>: SELECT COUNT(*) FROM university WHERE LOCATION LIKE "%NY%"
554
<question>: Find the team names of the universities whose enrollments are smaller than the average enrollment size. <context>: CREATE TABLE university (school_id VARCHAR); CREATE TABLE basketball_match (team_name VARCHAR, school_id VARCHAR); CREATE TABLE university (enrollment INTEGER) <answer>: 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)
555
<question>: Find the number of universities that have over a 20000 enrollment size for each affiliation type. <context>: CREATE TABLE university (affiliation VARCHAR, enrollment INTEGER) <answer>: SELECT COUNT(*), affiliation FROM university WHERE enrollment > 20000 GROUP BY affiliation
556
<question>: Find the total number of students enrolled in the colleges that were founded after the year of 1850 for each affiliation type. <context>: CREATE TABLE university (affiliation VARCHAR, Enrollment INTEGER, founded INTEGER) <answer>: SELECT SUM(Enrollment), affiliation FROM university WHERE founded > 1850 GROUP BY affiliation
557
<question>: What is the maximum enrollment across all schools? <context>: CREATE TABLE university (Enrollment INTEGER) <answer>: SELECT MAX(Enrollment) FROM university
558
<question>: List all information regarding the basketball match. <context>: CREATE TABLE basketball_match (Id VARCHAR) <answer>: SELECT * FROM basketball_match
559
<question>: List names of all teams in the basketball competition, ordered by all home scores in descending order. <context>: CREATE TABLE basketball_match (team_name VARCHAR, All_Home VARCHAR) <answer>: SELECT team_name FROM basketball_match ORDER BY All_Home DESC
560
<question>: the names of models that launched between 2002 and 2004. <context>: CREATE TABLE chip_model (Model_name VARCHAR, Launch_year INTEGER) <answer>: SELECT Model_name FROM chip_model WHERE Launch_year BETWEEN 2002 AND 2004
561
<question>: Which model has the least amount of RAM? List the model name and the amount of RAM. <context>: CREATE TABLE chip_model (Model_name VARCHAR, RAM_MiB VARCHAR) <answer>: SELECT Model_name, RAM_MiB FROM chip_model ORDER BY RAM_MiB LIMIT 1
562
<question>: What are the chip model and screen mode of the phone with hardware model name "LG-P760"? <context>: CREATE TABLE phone (chip_model VARCHAR, screen_mode VARCHAR, Hardware_Model_name VARCHAR) <answer>: SELECT chip_model, screen_mode FROM phone WHERE Hardware_Model_name = "LG-P760"
563
<question>: How many phone hardware models are produced by the company named "Nokia Corporation"? <context>: CREATE TABLE phone (Company_name VARCHAR) <answer>: SELECT COUNT(*) FROM phone WHERE Company_name = "Nokia Corporation"
564
<question>: What is maximum and minimum RAM size of phone produced by company named "Nokia Corporation"? <context>: CREATE TABLE phone (chip_model VARCHAR, Company_name VARCHAR); CREATE TABLE chip_model (RAM_MiB INTEGER, Model_name VARCHAR) <answer>: 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"
565
<question>: What is the average ROM size of phones produced by the company named "Nokia Corporation"? <context>: CREATE TABLE phone (chip_model VARCHAR, Company_name VARCHAR); CREATE TABLE chip_model (ROM_MiB INTEGER, Model_name VARCHAR) <answer>: 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"
566
<question>: 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. <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) <answer>: 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
567
<question>: Find all phones that have word 'Full' in their accreditation types. List the Hardware Model name and Company name. <context>: CREATE TABLE phone (Hardware_Model_name VARCHAR, Company_name VARCHAR, Accreditation_type VARCHAR) <answer>: SELECT Hardware_Model_name, Company_name FROM phone WHERE Accreditation_type LIKE 'Full'
568
<question>: Find the Char cells, Pixels and Hardware colours for the screen of the phone whose hardware model name is "LG-P760". <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) <answer>: 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"
569
<question>: List the hardware model name and company name for the phone whose screen mode type is "Graphics." <context>: CREATE TABLE phone (Hardware_Model_name VARCHAR, Company_name VARCHAR, screen_mode VARCHAR); CREATE TABLE screen_mode (Graphics_mode VARCHAR, Type VARCHAR) <answer>: 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"
570
<question>: 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. <context>: CREATE TABLE phone (Company_name VARCHAR) <answer>: SELECT Company_name, COUNT(*) FROM phone GROUP BY Company_name ORDER BY COUNT(*) LIMIT 1
571
<question>: List the name of the company that produced more than one phone model. <context>: CREATE TABLE phone (Company_name VARCHAR) <answer>: SELECT Company_name FROM phone GROUP BY Company_name HAVING COUNT(*) > 1
572
<question>: List the maximum, minimum and average number of used kb in screen mode. <context>: CREATE TABLE screen_mode (used_kb INTEGER) <answer>: SELECT MAX(used_kb), MIN(used_kb), AVG(used_kb) FROM screen_mode
573
<question>: List the name of the phone model launched in year 2002 and with the highest RAM size. <context>: CREATE TABLE chip_model (Model_name VARCHAR, Launch_year VARCHAR, RAM_MiB VARCHAR); CREATE TABLE phone (Hardware_Model_name VARCHAR, chip_model VARCHAR) <answer>: 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
574
<question>: 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) <answer>: 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"
575
<question>: List the hardware model name for the phones that have screen mode type "Text" or RAM size greater than 32. <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) <answer>: 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
576
<question>: List the hardware model name for the phones that were produced by "Nokia Corporation" or whose screen mode type is "Graphics." <context>: CREATE TABLE phone (Hardware_Model_name VARCHAR, screen_mode VARCHAR); CREATE TABLE screen_mode (Graphics_mode VARCHAR, Type VARCHAR) <answer>: 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"
577
<question>: List the hardware model name for the phons that were produced by "Nokia Corporation" but whose screen mode type is not Text. <context>: CREATE TABLE phone (Hardware_Model_name VARCHAR, screen_mode VARCHAR); CREATE TABLE screen_mode (Graphics_mode VARCHAR, Type VARCHAR) <answer>: 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"
578
<question>: List the phone hardware model and company name for the phones whose screen usage in kb is between 10 and 15. <context>: CREATE TABLE phone (Hardware_Model_name VARCHAR, Company_name VARCHAR, screen_mode VARCHAR); CREATE TABLE screen_mode (Graphics_mode VARCHAR, used_kb INTEGER) <answer>: 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
579
<question>: Find the number of phones for each accreditation type. <context>: CREATE TABLE phone (Accreditation_type VARCHAR) <answer>: SELECT Accreditation_type, COUNT(*) FROM phone GROUP BY Accreditation_type
580
<question>: Find the accreditation level that more than 3 phones use. <context>: CREATE TABLE phone (Accreditation_level VARCHAR) <answer>: SELECT Accreditation_level FROM phone GROUP BY Accreditation_level HAVING COUNT(*) > 3
581
<question>: Find the details for all chip models. <context>: CREATE TABLE chip_model (Id VARCHAR) <answer>: SELECT * FROM chip_model
582
<question>: How many models do not have the wifi function? <context>: CREATE TABLE chip_model (wifi VARCHAR) <answer>: SELECT COUNT(*) FROM chip_model WHERE wifi = 'No'
583
<question>: List all the model names sorted by their launch year. <context>: CREATE TABLE chip_model (model_name VARCHAR, launch_year VARCHAR) <answer>: SELECT model_name FROM chip_model ORDER BY launch_year
584
<question>: Find the average ram mib size of the chip models that are never used by any phone. <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) <answer>: SELECT AVG(RAM_MiB) FROM chip_model WHERE NOT model_name IN (SELECT chip_model FROM phone)
585
<question>: Find the names of the chip models that are not used by any phone with full accreditation type. <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) <answer>: SELECT model_name FROM chip_model EXCEPT SELECT chip_model FROM phone WHERE Accreditation_type = 'Full'
586
<question>: Find the pixels of the screen modes that are used by both phones with full accreditation types and phones with Provisional accreditation types. <context>: CREATE TABLE phone (screen_mode VARCHAR, Accreditation_type VARCHAR); CREATE TABLE screen_mode (pixels VARCHAR, Graphics_mode VARCHAR) <answer>: 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'
587
<question>: How many countries are there in total? <context>: CREATE TABLE country (Id VARCHAR) <answer>: SELECT COUNT(*) FROM country
588
<question>: Show the country name and capital of all countries. <context>: CREATE TABLE country (Country_name VARCHAR, Capital VARCHAR) <answer>: SELECT Country_name, Capital FROM country
589
<question>: Show all official native languages that contain the word "English". <context>: CREATE TABLE country (Official_native_language VARCHAR) <answer>: SELECT Official_native_language FROM country WHERE Official_native_language LIKE "%English%"
590
<question>: Show all distinct positions of matches. <context>: CREATE TABLE match_season (POSITION VARCHAR) <answer>: SELECT DISTINCT POSITION FROM match_season
591
<question>: Show the players from college UCLA. <context>: CREATE TABLE match_season (Player VARCHAR, College VARCHAR) <answer>: SELECT Player FROM match_season WHERE College = "UCLA"
592
<question>: Show the distinct position of players from college UCLA or Duke. <context>: CREATE TABLE match_season (POSITION VARCHAR, College VARCHAR) <answer>: SELECT DISTINCT POSITION FROM match_season WHERE College = "UCLA" OR College = "Duke"
593
<question>: Show the draft pick numbers and draft classes of players whose positions are defenders. <context>: CREATE TABLE match_season (Draft_Pick_Number VARCHAR, Draft_Class VARCHAR, POSITION VARCHAR) <answer>: SELECT Draft_Pick_Number, Draft_Class FROM match_season WHERE POSITION = "Defender"
594
<question>: How many distinct teams are involved in match seasons? <context>: CREATE TABLE match_season (Team VARCHAR) <answer>: SELECT COUNT(DISTINCT Team) FROM match_season
595
<question>: Show the players and the years played. <context>: CREATE TABLE player (Player VARCHAR, Years_Played VARCHAR) <answer>: SELECT Player, Years_Played FROM player
596
<question>: Show all team names. <context>: CREATE TABLE Team (Name VARCHAR) <answer>: SELECT Name FROM Team
597
<question>: Show the season, the player, and the name of the country that player belongs to. <context>: CREATE TABLE match_season (Season VARCHAR, Player VARCHAR, Country VARCHAR); CREATE TABLE country (Country_name VARCHAR, Country_id VARCHAR) <answer>: SELECT T2.Season, T2.Player, T1.Country_name FROM country AS T1 JOIN match_season AS T2 ON T1.Country_id = T2.Country
598
<question>: Which players are from Indonesia? <context>: CREATE TABLE country (Country_id VARCHAR, Country_name VARCHAR); CREATE TABLE match_season (Player VARCHAR, Country VARCHAR) <answer>: SELECT T2.Player FROM country AS T1 JOIN match_season AS T2 ON T1.Country_id = T2.Country WHERE T1.Country_name = "Indonesia"
599
<question>: What are the distinct positions of the players from a country whose capital is Dublin? <context>: CREATE TABLE country (Country_id VARCHAR, Capital VARCHAR); CREATE TABLE match_season (Position VARCHAR, Country VARCHAR) <answer>: SELECT DISTINCT T2.Position FROM country AS T1 JOIN match_season AS T2 ON T1.Country_id = T2.Country WHERE T1.Capital = "Dublin"