input
stringlengths
236
16.9k
output
stringlengths
19
805
-- Database schema | actor : actor_id [ INT ] primary_key , first_name [ TEXT ] , last_name [ TEXT ] , last_update [ TEXT ] | address : address_id [ INT ] primary_key , address [ TEXT ] , address2 [ TEXT ] , district [ TEXT ] , city_id [ INT ] address.city_id = city.city_id , postal_code [ TEXT ] , phone [ TEXT ] , last_update [ TEXT ] | category : category_id [ INT ] primary_key , name [ TEXT ] , last_update [ TEXT ] | city : city_id [ INT ] primary_key , city [ TEXT ] , country_id [ INT ] city.country_id = country.country_id , last_update [ TEXT ] | country : country_id [ INT ] primary_key , country [ TEXT ] , last_update [ TEXT ] | customer : customer_id [ INT ] primary_key , store_id [ INT ] customer.store_id = store.store_id , first_name [ TEXT ] , last_name [ TEXT ] , email [ TEXT ] , address_id [ INT ] customer.address_id = address.address_id , active [ TEXT ] , create_date [ TEXT ] , last_update [ TEXT ] | film : film_id [ INT ] primary_key , title [ TEXT ] , description [ TEXT ] , release_year [ TEXT ] , language_id [ INT ] film.language_id = language.language_id , original_language_id [ INT ] film.original_language_id = language.language_id , rental_duration [ INT ] , rental_rate [ INT ] , length [ INT ] , replacement_cost [ INT ] , rating [ TEXT ] , special_features [ TEXT ] , last_update [ TEXT ] | film_actor : actor_id [ INT ] primary_key film_actor.actor_id = actor.actor_id , film_id [ INT ] film_actor.film_id = film.film_id , last_update [ TEXT ] | film_category : film_id [ INT ] primary_key film_category.film_id = film.film_id , category_id [ INT ] film_category.category_id = category.category_id , last_update [ TEXT ] | film_text : film_id [ INT ] primary_key , title [ TEXT ] , description [ TEXT ] | inventory : inventory_id [ INT ] primary_key , film_id [ INT ] inventory.film_id = film.film_id , store_id [ INT ] inventory.store_id = store.store_id , last_update [ TEXT ] | language : language_id [ INT ] primary_key , name [ TEXT ] , last_update [ TEXT ] | payment : payment_id [ INT ] primary_key , customer_id [ INT ] payment.customer_id = customer.customer_id , staff_id [ INT ] payment.staff_id = staff.staff_id , rental_id [ INT ] payment.rental_id = rental.rental_id , amount [ INT ] , payment_date [ TEXT ] , last_update [ TEXT ] | rental : rental_id [ INT ] primary_key , rental_date [ TEXT ] , inventory_id [ INT ] rental.inventory_id = inventory.inventory_id , customer_id [ INT ] rental.customer_id = customer.customer_id , return_date [ TEXT ] , staff_id [ INT ] rental.staff_id = staff.staff_id , last_update [ TEXT ] | staff : staff_id [ INT ] primary_key , first_name [ TEXT ] , last_name [ TEXT ] , address_id [ INT ] staff.address_id = address.address_id , picture [ TEXT ] , email [ TEXT ] , store_id [ INT ] , active [ TEXT ] , username [ TEXT ] , password [ TEXT ] , last_update [ TEXT ] | store : store_id [ INT ] primary_key , manager_staff_id [ INT ] store.manager_staff_id = staff.staff_id , address_id [ INT ] store.address_id = address.address_id , last_update [ TEXT ] | -- -- What is the largest payment amount?
SELECT amount FROM payment ORDER BY amount DESC LIMIT 1;
-- Database schema | actor : actor_id [ INT ] primary_key , first_name [ TEXT ] , last_name [ TEXT ] , last_update [ TEXT ] | address : address_id [ INT ] primary_key , address [ TEXT ] , address2 [ TEXT ] , district [ TEXT ] , city_id [ INT ] address.city_id = city.city_id , postal_code [ TEXT ] , phone [ TEXT ] , last_update [ TEXT ] | category : category_id [ INT ] primary_key , name [ TEXT ] , last_update [ TEXT ] | city : city_id [ INT ] primary_key , city [ TEXT ] , country_id [ INT ] city.country_id = country.country_id , last_update [ TEXT ] | country : country_id [ INT ] primary_key , country [ TEXT ] , last_update [ TEXT ] | customer : customer_id [ INT ] primary_key , store_id [ INT ] customer.store_id = store.store_id , first_name [ TEXT ] , last_name [ TEXT ] , email [ TEXT ] , address_id [ INT ] customer.address_id = address.address_id , active [ TEXT ] , create_date [ TEXT ] , last_update [ TEXT ] | film : film_id [ INT ] primary_key , title [ TEXT ] , description [ TEXT ] , release_year [ TEXT ] , language_id [ INT ] film.language_id = language.language_id , original_language_id [ INT ] film.original_language_id = language.language_id , rental_duration [ INT ] , rental_rate [ INT ] , length [ INT ] , replacement_cost [ INT ] , rating [ TEXT ] , special_features [ TEXT ] , last_update [ TEXT ] | film_actor : actor_id [ INT ] primary_key film_actor.actor_id = actor.actor_id , film_id [ INT ] film_actor.film_id = film.film_id , last_update [ TEXT ] | film_category : film_id [ INT ] primary_key film_category.film_id = film.film_id , category_id [ INT ] film_category.category_id = category.category_id , last_update [ TEXT ] | film_text : film_id [ INT ] primary_key , title [ TEXT ] , description [ TEXT ] | inventory : inventory_id [ INT ] primary_key , film_id [ INT ] inventory.film_id = film.film_id , store_id [ INT ] inventory.store_id = store.store_id , last_update [ TEXT ] | language : language_id [ INT ] primary_key , name [ TEXT ] , last_update [ TEXT ] | payment : payment_id [ INT ] primary_key , customer_id [ INT ] payment.customer_id = customer.customer_id , staff_id [ INT ] payment.staff_id = staff.staff_id , rental_id [ INT ] payment.rental_id = rental.rental_id , amount [ INT ] , payment_date [ TEXT ] , last_update [ TEXT ] | rental : rental_id [ INT ] primary_key , rental_date [ TEXT ] , inventory_id [ INT ] rental.inventory_id = inventory.inventory_id , customer_id [ INT ] rental.customer_id = customer.customer_id , return_date [ TEXT ] , staff_id [ INT ] rental.staff_id = staff.staff_id , last_update [ TEXT ] | staff : staff_id [ INT ] primary_key , first_name [ TEXT ] , last_name [ TEXT ] , address_id [ INT ] staff.address_id = address.address_id , picture [ TEXT ] , email [ TEXT ] , store_id [ INT ] , active [ TEXT ] , username [ TEXT ] , password [ TEXT ] , last_update [ TEXT ] | store : store_id [ INT ] primary_key , manager_staff_id [ INT ] store.manager_staff_id = staff.staff_id , address_id [ INT ] store.address_id = address.address_id , last_update [ TEXT ] | -- -- Return the amount of the largest payment.
SELECT amount FROM payment ORDER BY amount DESC LIMIT 1;
-- Database schema | actor : actor_id [ INT ] primary_key , first_name [ TEXT ] , last_name [ TEXT ] , last_update [ TEXT ] | address : address_id [ INT ] primary_key , address [ TEXT ] , address2 [ TEXT ] , district [ TEXT ] , city_id [ INT ] address.city_id = city.city_id , postal_code [ TEXT ] , phone [ TEXT ] , last_update [ TEXT ] | category : category_id [ INT ] primary_key , name [ TEXT ] , last_update [ TEXT ] | city : city_id [ INT ] primary_key , city [ TEXT ] , country_id [ INT ] city.country_id = country.country_id , last_update [ TEXT ] | country : country_id [ INT ] primary_key , country [ TEXT ] , last_update [ TEXT ] | customer : customer_id [ INT ] primary_key , store_id [ INT ] customer.store_id = store.store_id , first_name [ TEXT ] , last_name [ TEXT ] , email [ TEXT ] , address_id [ INT ] customer.address_id = address.address_id , active [ TEXT ] , create_date [ TEXT ] , last_update [ TEXT ] | film : film_id [ INT ] primary_key , title [ TEXT ] , description [ TEXT ] , release_year [ TEXT ] , language_id [ INT ] film.language_id = language.language_id , original_language_id [ INT ] film.original_language_id = language.language_id , rental_duration [ INT ] , rental_rate [ INT ] , length [ INT ] , replacement_cost [ INT ] , rating [ TEXT ] , special_features [ TEXT ] , last_update [ TEXT ] | film_actor : actor_id [ INT ] primary_key film_actor.actor_id = actor.actor_id , film_id [ INT ] film_actor.film_id = film.film_id , last_update [ TEXT ] | film_category : film_id [ INT ] primary_key film_category.film_id = film.film_id , category_id [ INT ] film_category.category_id = category.category_id , last_update [ TEXT ] | film_text : film_id [ INT ] primary_key , title [ TEXT ] , description [ TEXT ] | inventory : inventory_id [ INT ] primary_key , film_id [ INT ] inventory.film_id = film.film_id , store_id [ INT ] inventory.store_id = store.store_id , last_update [ TEXT ] | language : language_id [ INT ] primary_key , name [ TEXT ] , last_update [ TEXT ] | payment : payment_id [ INT ] primary_key , customer_id [ INT ] payment.customer_id = customer.customer_id , staff_id [ INT ] payment.staff_id = staff.staff_id , rental_id [ INT ] payment.rental_id = rental.rental_id , amount [ INT ] , payment_date [ TEXT ] , last_update [ TEXT ] | rental : rental_id [ INT ] primary_key , rental_date [ TEXT ] , inventory_id [ INT ] rental.inventory_id = inventory.inventory_id , customer_id [ INT ] rental.customer_id = customer.customer_id , return_date [ TEXT ] , staff_id [ INT ] rental.staff_id = staff.staff_id , last_update [ TEXT ] | staff : staff_id [ INT ] primary_key , first_name [ TEXT ] , last_name [ TEXT ] , address_id [ INT ] staff.address_id = address.address_id , picture [ TEXT ] , email [ TEXT ] , store_id [ INT ] , active [ TEXT ] , username [ TEXT ] , password [ TEXT ] , last_update [ TEXT ] | store : store_id [ INT ] primary_key , manager_staff_id [ INT ] store.manager_staff_id = staff.staff_id , address_id [ INT ] store.address_id = address.address_id , last_update [ TEXT ] | -- -- Where does the staff member with the first name Elsa live?
SELECT T2.address FROM staff AS T1 JOIN address AS T2 ON T1.address_id = T2.address_id WHERE T1.first_name = 'Elsa';
-- Database schema | actor : actor_id [ INT ] primary_key , first_name [ TEXT ] , last_name [ TEXT ] , last_update [ TEXT ] | address : address_id [ INT ] primary_key , address [ TEXT ] , address2 [ TEXT ] , district [ TEXT ] , city_id [ INT ] address.city_id = city.city_id , postal_code [ TEXT ] , phone [ TEXT ] , last_update [ TEXT ] | category : category_id [ INT ] primary_key , name [ TEXT ] , last_update [ TEXT ] | city : city_id [ INT ] primary_key , city [ TEXT ] , country_id [ INT ] city.country_id = country.country_id , last_update [ TEXT ] | country : country_id [ INT ] primary_key , country [ TEXT ] , last_update [ TEXT ] | customer : customer_id [ INT ] primary_key , store_id [ INT ] customer.store_id = store.store_id , first_name [ TEXT ] , last_name [ TEXT ] , email [ TEXT ] , address_id [ INT ] customer.address_id = address.address_id , active [ TEXT ] , create_date [ TEXT ] , last_update [ TEXT ] | film : film_id [ INT ] primary_key , title [ TEXT ] , description [ TEXT ] , release_year [ TEXT ] , language_id [ INT ] film.language_id = language.language_id , original_language_id [ INT ] film.original_language_id = language.language_id , rental_duration [ INT ] , rental_rate [ INT ] , length [ INT ] , replacement_cost [ INT ] , rating [ TEXT ] , special_features [ TEXT ] , last_update [ TEXT ] | film_actor : actor_id [ INT ] primary_key film_actor.actor_id = actor.actor_id , film_id [ INT ] film_actor.film_id = film.film_id , last_update [ TEXT ] | film_category : film_id [ INT ] primary_key film_category.film_id = film.film_id , category_id [ INT ] film_category.category_id = category.category_id , last_update [ TEXT ] | film_text : film_id [ INT ] primary_key , title [ TEXT ] , description [ TEXT ] | inventory : inventory_id [ INT ] primary_key , film_id [ INT ] inventory.film_id = film.film_id , store_id [ INT ] inventory.store_id = store.store_id , last_update [ TEXT ] | language : language_id [ INT ] primary_key , name [ TEXT ] , last_update [ TEXT ] | payment : payment_id [ INT ] primary_key , customer_id [ INT ] payment.customer_id = customer.customer_id , staff_id [ INT ] payment.staff_id = staff.staff_id , rental_id [ INT ] payment.rental_id = rental.rental_id , amount [ INT ] , payment_date [ TEXT ] , last_update [ TEXT ] | rental : rental_id [ INT ] primary_key , rental_date [ TEXT ] , inventory_id [ INT ] rental.inventory_id = inventory.inventory_id , customer_id [ INT ] rental.customer_id = customer.customer_id , return_date [ TEXT ] , staff_id [ INT ] rental.staff_id = staff.staff_id , last_update [ TEXT ] | staff : staff_id [ INT ] primary_key , first_name [ TEXT ] , last_name [ TEXT ] , address_id [ INT ] staff.address_id = address.address_id , picture [ TEXT ] , email [ TEXT ] , store_id [ INT ] , active [ TEXT ] , username [ TEXT ] , password [ TEXT ] , last_update [ TEXT ] | store : store_id [ INT ] primary_key , manager_staff_id [ INT ] store.manager_staff_id = staff.staff_id , address_id [ INT ] store.address_id = address.address_id , last_update [ TEXT ] | -- -- Give the address of the staff member who has the first name Elsa.
SELECT T2.address FROM staff AS T1 JOIN address AS T2 ON T1.address_id = T2.address_id WHERE T1.first_name = 'Elsa';
-- Database schema | actor : actor_id [ INT ] primary_key , first_name [ TEXT ] , last_name [ TEXT ] , last_update [ TEXT ] | address : address_id [ INT ] primary_key , address [ TEXT ] , address2 [ TEXT ] , district [ TEXT ] , city_id [ INT ] address.city_id = city.city_id , postal_code [ TEXT ] , phone [ TEXT ] , last_update [ TEXT ] | category : category_id [ INT ] primary_key , name [ TEXT ] , last_update [ TEXT ] | city : city_id [ INT ] primary_key , city [ TEXT ] , country_id [ INT ] city.country_id = country.country_id , last_update [ TEXT ] | country : country_id [ INT ] primary_key , country [ TEXT ] , last_update [ TEXT ] | customer : customer_id [ INT ] primary_key , store_id [ INT ] customer.store_id = store.store_id , first_name [ TEXT ] , last_name [ TEXT ] , email [ TEXT ] , address_id [ INT ] customer.address_id = address.address_id , active [ TEXT ] , create_date [ TEXT ] , last_update [ TEXT ] | film : film_id [ INT ] primary_key , title [ TEXT ] , description [ TEXT ] , release_year [ TEXT ] , language_id [ INT ] film.language_id = language.language_id , original_language_id [ INT ] film.original_language_id = language.language_id , rental_duration [ INT ] , rental_rate [ INT ] , length [ INT ] , replacement_cost [ INT ] , rating [ TEXT ] , special_features [ TEXT ] , last_update [ TEXT ] | film_actor : actor_id [ INT ] primary_key film_actor.actor_id = actor.actor_id , film_id [ INT ] film_actor.film_id = film.film_id , last_update [ TEXT ] | film_category : film_id [ INT ] primary_key film_category.film_id = film.film_id , category_id [ INT ] film_category.category_id = category.category_id , last_update [ TEXT ] | film_text : film_id [ INT ] primary_key , title [ TEXT ] , description [ TEXT ] | inventory : inventory_id [ INT ] primary_key , film_id [ INT ] inventory.film_id = film.film_id , store_id [ INT ] inventory.store_id = store.store_id , last_update [ TEXT ] | language : language_id [ INT ] primary_key , name [ TEXT ] , last_update [ TEXT ] | payment : payment_id [ INT ] primary_key , customer_id [ INT ] payment.customer_id = customer.customer_id , staff_id [ INT ] payment.staff_id = staff.staff_id , rental_id [ INT ] payment.rental_id = rental.rental_id , amount [ INT ] , payment_date [ TEXT ] , last_update [ TEXT ] | rental : rental_id [ INT ] primary_key , rental_date [ TEXT ] , inventory_id [ INT ] rental.inventory_id = inventory.inventory_id , customer_id [ INT ] rental.customer_id = customer.customer_id , return_date [ TEXT ] , staff_id [ INT ] rental.staff_id = staff.staff_id , last_update [ TEXT ] | staff : staff_id [ INT ] primary_key , first_name [ TEXT ] , last_name [ TEXT ] , address_id [ INT ] staff.address_id = address.address_id , picture [ TEXT ] , email [ TEXT ] , store_id [ INT ] , active [ TEXT ] , username [ TEXT ] , password [ TEXT ] , last_update [ TEXT ] | store : store_id [ INT ] primary_key , manager_staff_id [ INT ] store.manager_staff_id = staff.staff_id , address_id [ INT ] store.address_id = address.address_id , last_update [ TEXT ] | -- -- What are the first names of customers who have not rented any films after '2005-08-23 02:06:01'?
SELECT first_name FROM customer WHERE customer_id NOT IN( SELECT customer_id FROM rental WHERE rental_date > '2005-08-23 02:06:01' );
-- Database schema | actor : actor_id [ INT ] primary_key , first_name [ TEXT ] , last_name [ TEXT ] , last_update [ TEXT ] | address : address_id [ INT ] primary_key , address [ TEXT ] , address2 [ TEXT ] , district [ TEXT ] , city_id [ INT ] address.city_id = city.city_id , postal_code [ TEXT ] , phone [ TEXT ] , last_update [ TEXT ] | category : category_id [ INT ] primary_key , name [ TEXT ] , last_update [ TEXT ] | city : city_id [ INT ] primary_key , city [ TEXT ] , country_id [ INT ] city.country_id = country.country_id , last_update [ TEXT ] | country : country_id [ INT ] primary_key , country [ TEXT ] , last_update [ TEXT ] | customer : customer_id [ INT ] primary_key , store_id [ INT ] customer.store_id = store.store_id , first_name [ TEXT ] , last_name [ TEXT ] , email [ TEXT ] , address_id [ INT ] customer.address_id = address.address_id , active [ TEXT ] , create_date [ TEXT ] , last_update [ TEXT ] | film : film_id [ INT ] primary_key , title [ TEXT ] , description [ TEXT ] , release_year [ TEXT ] , language_id [ INT ] film.language_id = language.language_id , original_language_id [ INT ] film.original_language_id = language.language_id , rental_duration [ INT ] , rental_rate [ INT ] , length [ INT ] , replacement_cost [ INT ] , rating [ TEXT ] , special_features [ TEXT ] , last_update [ TEXT ] | film_actor : actor_id [ INT ] primary_key film_actor.actor_id = actor.actor_id , film_id [ INT ] film_actor.film_id = film.film_id , last_update [ TEXT ] | film_category : film_id [ INT ] primary_key film_category.film_id = film.film_id , category_id [ INT ] film_category.category_id = category.category_id , last_update [ TEXT ] | film_text : film_id [ INT ] primary_key , title [ TEXT ] , description [ TEXT ] | inventory : inventory_id [ INT ] primary_key , film_id [ INT ] inventory.film_id = film.film_id , store_id [ INT ] inventory.store_id = store.store_id , last_update [ TEXT ] | language : language_id [ INT ] primary_key , name [ TEXT ] , last_update [ TEXT ] | payment : payment_id [ INT ] primary_key , customer_id [ INT ] payment.customer_id = customer.customer_id , staff_id [ INT ] payment.staff_id = staff.staff_id , rental_id [ INT ] payment.rental_id = rental.rental_id , amount [ INT ] , payment_date [ TEXT ] , last_update [ TEXT ] | rental : rental_id [ INT ] primary_key , rental_date [ TEXT ] , inventory_id [ INT ] rental.inventory_id = inventory.inventory_id , customer_id [ INT ] rental.customer_id = customer.customer_id , return_date [ TEXT ] , staff_id [ INT ] rental.staff_id = staff.staff_id , last_update [ TEXT ] | staff : staff_id [ INT ] primary_key , first_name [ TEXT ] , last_name [ TEXT ] , address_id [ INT ] staff.address_id = address.address_id , picture [ TEXT ] , email [ TEXT ] , store_id [ INT ] , active [ TEXT ] , username [ TEXT ] , password [ TEXT ] , last_update [ TEXT ] | store : store_id [ INT ] primary_key , manager_staff_id [ INT ] store.manager_staff_id = staff.staff_id , address_id [ INT ] store.address_id = address.address_id , last_update [ TEXT ] | -- -- Return the first names of customers who did not rented a film after the date '2005-08-23 02:06:01'.
SELECT first_name FROM customer WHERE customer_id NOT IN( SELECT customer_id FROM rental WHERE rental_date > '2005-08-23 02:06:01' );
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- How many bank branches are there?
SELECT count(*) FROM bank;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- Count the number of bank branches.
SELECT count(*) FROM bank;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- How many customers are there?
SELECT sum(no_of_customers) FROM bank;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- What is the total number of customers across banks?
SELECT sum(no_of_customers) FROM bank;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- Find the number of customers in the banks at New York City.
SELECT sum(no_of_customers) FROM bank WHERE city = 'New York City';
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- What is the total number of customers who use banks in New York City?
SELECT sum(no_of_customers) FROM bank WHERE city = 'New York City';
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- Find the average number of customers in all banks of Utah state.
SELECT avg(no_of_customers) FROM bank WHERE state = 'Utah';
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- What is the average number of customers across banks in the state of Utah?
SELECT avg(no_of_customers) FROM bank WHERE state = 'Utah';
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- Find the average number of customers cross all banks.
SELECT avg(no_of_customers) FROM bank;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- What is the average number of bank customers?
SELECT avg(no_of_customers) FROM bank;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- Find the city and state of the bank branch named morningside.
SELECT city , state FROM bank WHERE bname = 'morningside';
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- What city and state is the bank with the name morningside in?
SELECT city , state FROM bank WHERE bname = 'morningside';
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- Find the branch names of banks in the New York state.
SELECT bname FROM bank WHERE state = 'New York';
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- What are the names of banks in the state of New York?
SELECT bname FROM bank WHERE state = 'New York';
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- List the name of all customers sorted by their account balance in ascending order.
SELECT cust_name FROM customer ORDER BY acc_bal;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- What are the names of all customers, ordered by account balance?
SELECT cust_name FROM customer ORDER BY acc_bal;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- List the name of all different customers who have some loan sorted by their total loan amount.
SELECT T1.cust_name FROM customer AS T1 JOIN loan AS T2 ON T1.cust_id = T2.cust_id GROUP BY T1.cust_name ORDER BY sum(T2.amount);
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- What are the names of the different customers who have taken out a loan, ordered by the total amount that they have taken?
SELECT T1.cust_name FROM customer AS T1 JOIN loan AS T2 ON T1.cust_id = T2.cust_id GROUP BY T1.cust_name ORDER BY sum(T2.amount);
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- Find the state, account type, and credit score of the customer whose number of loan is 0.
SELECT state , acc_type , credit_score FROM customer WHERE no_of_loans = 0;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- What are the states, account types, and credit scores for customers who have 0 loans?
SELECT state , acc_type , credit_score FROM customer WHERE no_of_loans = 0;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- Find the number of different cities which banks are located at.
SELECT count(DISTINCT city) FROM bank;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- In how many different cities are banks located?
SELECT count(DISTINCT city) FROM bank;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- Find the number of different states which banks are located at.
SELECT count(DISTINCT state) FROM bank;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- In how many different states are banks located?
SELECT count(DISTINCT state) FROM bank;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- How many distinct types of accounts are there?
SELECT count(DISTINCT acc_type) FROM customer;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- Count the number of different account types.
SELECT count(DISTINCT acc_type) FROM customer;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- Find the name and account balance of the customer whose name includes the letter ‘a’.
SELECT cust_name , acc_bal FROM customer WHERE cust_name LIKE '%a%';
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- What are the names and account balances of customers with the letter a in their names?
SELECT cust_name , acc_bal FROM customer WHERE cust_name LIKE '%a%';
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- Find the total account balance of each customer from Utah or Texas.
SELECT sum(acc_bal) FROM customer WHERE state = 'Utah' OR state = 'Texas';
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- What are the total account balances for each customer from Utah or Texas?
SELECT sum(acc_bal) FROM customer WHERE state = 'Utah' OR state = 'Texas';
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- Find the name of customers who have both saving and checking account types.
SELECT cust_name FROM customer WHERE acc_type = 'saving' INTERSECT SELECT cust_name FROM customer WHERE acc_type = 'checking';
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- What are the names of customers who have both savings and checking accounts?
SELECT cust_name FROM customer WHERE acc_type = 'saving' INTERSECT SELECT cust_name FROM customer WHERE acc_type = 'checking';
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- Find the name of customers who do not have an saving account.
SELECT cust_name FROM customer EXCEPT SELECT cust_name FROM customer WHERE acc_type = 'saving';
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- What are the names of customers who do not have saving accounts?
SELECT cust_name FROM customer EXCEPT SELECT cust_name FROM customer WHERE acc_type = 'saving';
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- Find the name of customers who do not have a loan with a type of Mortgages.
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';
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- What are the names of customers who have not taken a Mortage loan?
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';
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- Find the name of customers who have loans of both Mortgages and Auto.
SELECT T1.cust_name FROM customer AS T1 JOIN loan AS T2 ON T1.cust_id = T2.cust_id WHERE loan_type = 'Mortgages' INTERSECT SELECT T1.cust_name FROM customer AS T1 JOIN loan AS T2 ON T1.cust_id = T2.cust_id WHERE loan_type = 'Auto';
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- What are the names of customers who have taken both Mortgage and Auto loans?
SELECT T1.cust_name FROM customer AS T1 JOIN loan AS T2 ON T1.cust_id = T2.cust_id WHERE loan_type = 'Mortgages' INTERSECT SELECT T1.cust_name FROM customer AS T1 JOIN loan AS T2 ON T1.cust_id = T2.cust_id WHERE loan_type = 'Auto';
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- Find the name of customers whose credit score is below the average credit scores of all customers.
SELECT cust_name FROM customer WHERE credit_score < (SELECT avg(credit_score) FROM customer);
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- What are the names of customers with credit score less than the average credit score across customers?
SELECT cust_name FROM customer WHERE credit_score < (SELECT avg(credit_score) FROM customer);
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- Find the branch name of the bank that has the most number of customers.
SELECT bname FROM bank ORDER BY no_of_customers DESC LIMIT 1;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- What is the name of the bank branch with the greatest number of customers?
SELECT bname FROM bank ORDER BY no_of_customers DESC LIMIT 1;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- Find the name of customer who has the lowest credit score.
SELECT cust_name FROM customer ORDER BY credit_score LIMIT 1;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- What is the name of the customer with the worst credit score?
SELECT cust_name FROM customer ORDER BY credit_score LIMIT 1;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- Find the name, account type, and account balance of the customer who has the highest credit score.
SELECT cust_name , acc_type , acc_bal FROM customer ORDER BY credit_score DESC LIMIT 1;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- What is the name, account type, and account balance corresponding to the customer with the highest credit score?
SELECT cust_name , acc_type , acc_bal FROM customer ORDER BY credit_score DESC LIMIT 1;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- Find the name of customer who has the highest amount of loans.
SELECT T1.cust_name FROM customer AS T1 JOIN loan AS T2 ON T1.cust_id = T2.cust_id GROUP BY T1.cust_name ORDER BY sum(T2.amount) DESC LIMIT 1;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- What is the name of the customer who has greatest total loan amount?
SELECT T1.cust_name FROM customer AS T1 JOIN loan AS T2 ON T1.cust_id = T2.cust_id GROUP BY T1.cust_name ORDER BY sum(T2.amount) DESC LIMIT 1;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- Find the state which has the most number of customers.
SELECT state FROM bank GROUP BY state ORDER BY sum(no_of_customers) DESC LIMIT 1;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- Which state has the greatest total number of bank customers?
SELECT state FROM bank GROUP BY state ORDER BY sum(no_of_customers) DESC LIMIT 1;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- For each account type, find the average account balance of customers with credit score lower than 50.
SELECT avg(acc_bal) , acc_type FROM customer WHERE credit_score < 50 GROUP BY acc_type;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- What is the average account balance of customers with credit score below 50 for the different account types?
SELECT avg(acc_bal) , acc_type FROM customer WHERE credit_score < 50 GROUP BY acc_type;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- For each state, find the total account balance of customers whose credit score is above 100.
SELECT sum(acc_bal) , state FROM customer WHERE credit_score > 100 GROUP BY state;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- What is the total account balance for customers with a credit score of above 100 for the different states?
SELECT sum(acc_bal) , state FROM customer WHERE credit_score > 100 GROUP BY state;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- Find the total amount of loans offered by each bank branch.
SELECT sum(amount) , T1.bname FROM bank AS T1 JOIN loan AS T2 ON T1.branch_id = T2.branch_id GROUP BY T1.bname;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- What are the names of the different bank branches, and what are their total loan amounts?
SELECT sum(amount) , T1.bname FROM bank AS T1 JOIN loan AS T2 ON T1.branch_id = T2.branch_id GROUP BY T1.bname;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- Find the name of customers who have more than one loan.
SELECT T1.cust_name FROM customer AS T1 JOIN loan AS T2 ON T1.cust_id = T2.cust_id GROUP BY T1.cust_name HAVING count(*) > 1;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- What are the names of customers who have taken out more than one loan?
SELECT T1.cust_name FROM customer AS T1 JOIN loan AS T2 ON T1.cust_id = T2.cust_id GROUP BY T1.cust_name HAVING count(*) > 1;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- Find the name and account balance of the customers who have loans with a total amount of more than 5000.
SELECT T1.cust_name , T1.acc_type FROM customer AS T1 JOIN loan AS T2 ON T1.cust_id = T2.cust_id GROUP BY T1.cust_name HAVING sum(T2.amount) > 5000;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- What are the names and account balances for customers who have taken a total amount of more than 5000 in loans?
SELECT T1.cust_name , T1.acc_type FROM customer AS T1 JOIN loan AS T2 ON T1.cust_id = T2.cust_id GROUP BY T1.cust_name HAVING sum(T2.amount) > 5000;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- Find the name of bank branch that provided the greatest total amount of loans.
SELECT T1.bname FROM bank AS T1 JOIN loan AS T2 ON T1.branch_id = T2.branch_id GROUP BY T1.bname ORDER BY sum(T2.amount) DESC LIMIT 1;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- What is the name of the bank branch that has lent the greatest amount?
SELECT T1.bname FROM bank AS T1 JOIN loan AS T2 ON T1.branch_id = T2.branch_id GROUP BY T1.bname ORDER BY sum(T2.amount) DESC LIMIT 1;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- Find the name of bank branch that provided the greatest total amount of loans to customers with credit score is less than 100.
SELECT T2.bname FROM loan AS T1 JOIN bank AS T2 ON T1.branch_id = T2.branch_id JOIN customer AS T3 ON T1.cust_id = T3.cust_id WHERE T3.credit_score < 100 GROUP BY T2.bname ORDER BY sum(T1.amount) DESC LIMIT 1;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- What is the name of the bank branch that has lended the largest total amount in loans, specifically to customers with credit scores below 100?
SELECT T2.bname FROM loan AS T1 JOIN bank AS T2 ON T1.branch_id = T2.branch_id JOIN customer AS T3 ON T1.cust_id = T3.cust_id WHERE T3.credit_score < 100 GROUP BY T2.bname ORDER BY sum(T1.amount) DESC LIMIT 1;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- Find the name of bank branches that provided some loans.
SELECT DISTINCT T1.bname FROM bank AS T1 JOIN loan AS T2 ON T1.branch_id = T2.branch_id;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- What are the names of the different banks that have provided loans?
SELECT DISTINCT T1.bname FROM bank AS T1 JOIN loan AS T2 ON T1.branch_id = T2.branch_id;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- Find the name and credit score of the customers who have some loans.
SELECT DISTINCT T1.cust_name , T1.credit_score FROM customer AS T1 JOIN loan AS T2 ON T1.cust_id = T2.cust_id;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- What are the different names and credit scores of customers who have taken a loan?
SELECT DISTINCT T1.cust_name , T1.credit_score FROM customer AS T1 JOIN loan AS T2 ON T1.cust_id = T2.cust_id;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- Find the the name of the customers who have a loan with amount more than 3000.
SELECT T1.cust_name FROM customer AS T1 JOIN loan AS T2 ON T1.cust_id = T2.cust_id WHERE amount > 3000;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- What are the names of customers who have a loan of more than 3000 in amount?
SELECT T1.cust_name FROM customer AS T1 JOIN loan AS T2 ON T1.cust_id = T2.cust_id WHERE amount > 3000;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- Find the city and name of bank branches that provide business loans.
SELECT T1.bname , T1.city FROM bank AS T1 JOIN loan AS T2 ON T1.branch_id = T2.branch_id WHERE T2.loan_type = 'Business';
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- What are the names and cities of bank branches that offer loans for business?
SELECT T1.bname , T1.city FROM bank AS T1 JOIN loan AS T2 ON T1.branch_id = T2.branch_id WHERE T2.loan_type = 'Business';
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- Find the names of bank branches that have provided a loan to any customer whose credit score is below 100.
SELECT T2.bname FROM loan AS T1 JOIN bank AS T2 ON T1.branch_id = T2.branch_id JOIN customer AS T3 ON T1.cust_id = T3.cust_id WHERE T3.credit_score < 100;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- What are the names of banks that have loaned money to customers with credit scores below 100?
SELECT T2.bname FROM loan AS T1 JOIN bank AS T2 ON T1.branch_id = T2.branch_id JOIN customer AS T3 ON T1.cust_id = T3.cust_id WHERE T3.credit_score < 100;
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- Find the total amount of loans provided by bank branches in the state of New York.
SELECT sum(T2.amount) FROM bank AS T1 JOIN loan AS T2 ON T1.branch_id = T2.branch_id WHERE T1.state = 'New York';
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- What is the total amount of money loaned by banks in New York state?
SELECT sum(T2.amount) FROM bank AS T1 JOIN loan AS T2 ON T1.branch_id = T2.branch_id WHERE T1.state = 'New York';
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- Find the average credit score of the customers who have some loan.
SELECT avg(credit_score) FROM customer WHERE cust_id IN (SELECT cust_id FROM loan);
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- What is the average credit score for customers who have taken a loan?
SELECT avg(credit_score) FROM customer WHERE cust_id IN (SELECT cust_id FROM loan);
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- Find the average credit score of the customers who do not have any loan.
SELECT avg(credit_score) FROM customer WHERE cust_id NOT IN (SELECT cust_id FROM loan);
-- Database schema | bank : branch_ID [ INT ] primary_key , bname [ TEXT ] , no_of_customers [ INT ] , city [ TEXT ] , state [ TEXT ] | customer : cust_ID [ TEXT ] primary_key , cust_name [ TEXT ] , acc_type [ TEXT ] , acc_bal [ INT ] , no_of_loans [ INT ] , credit_score [ INT ] , branch_ID [ INT ] customer.branch_ID = bank.branch_ID , state [ TEXT ] | loan : loan_ID [ TEXT ] primary_key , loan_type [ TEXT ] , cust_ID [ TEXT ] , branch_ID [ TEXT ] loan.branch_ID = bank.branch_ID , amount [ INT ] | -- -- What is the average credit score for customers who have never taken a loan?
SELECT avg(credit_score) FROM customer WHERE cust_id NOT IN (SELECT cust_id FROM loan);
-- Database schema | Ref_Address_Types : address_type_code [ TEXT ] primary_key , address_type_description [ TEXT ] | Ref_Detention_Type : detention_type_code [ TEXT ] primary_key , detention_type_description [ TEXT ] | Ref_Incident_Type : incident_type_code [ TEXT ] primary_key , incident_type_description [ TEXT ] | Addresses : address_id [ INT ] primary_key , line_1 [ TEXT ] , line_2 [ TEXT ] , line_3 [ TEXT ] , city [ TEXT ] , zip_postcode [ TEXT ] , state_province_county [ TEXT ] , country [ TEXT ] , other_address_details [ TEXT ] | Students : student_id [ INT ] primary_key , address_id [ INT ] Students.address_id = Addresses.address_id , first_name [ TEXT ] , middle_name [ TEXT ] , last_name [ TEXT ] , cell_mobile_number [ TEXT ] , email_address [ TEXT ] , date_first_rental [ TEXT ] , date_left_university [ TEXT ] , other_student_details [ TEXT ] | Teachers : teacher_id [ INT ] primary_key , address_id [ INT ] Teachers.address_id = Addresses.address_id , first_name [ TEXT ] , middle_name [ TEXT ] , last_name [ TEXT ] , gender [ TEXT ] , cell_mobile_number [ TEXT ] , email_address [ TEXT ] , other_details [ TEXT ] | Assessment_Notes : notes_id [ INT ] , student_id [ INT ] Assessment_Notes.student_id = Students.student_id , teacher_id [ INT ] Assessment_Notes.teacher_id = Teachers.teacher_id , date_of_notes [ TEXT ] , text_of_notes [ TEXT ] , other_details [ TEXT ] | Behavior_Incident : incident_id [ INT ] primary_key , incident_type_code [ TEXT ] Behavior_Incident.incident_type_code = Ref_Incident_Type.incident_type_code , student_id [ INT ] Behavior_Incident.student_id = Students.student_id , date_incident_start [ TEXT ] , date_incident_end [ TEXT ] , incident_summary [ TEXT ] , recommendations [ TEXT ] , other_details [ TEXT ] | Detention : detention_id [ INT ] primary_key , detention_type_code [ TEXT ] Detention.detention_type_code = Ref_Detention_Type.detention_type_code , teacher_id [ INT ] Detention.teacher_id = Teachers.teacher_id , datetime_detention_start [ TEXT ] , datetime_detention_end [ TEXT ] , detention_summary [ TEXT ] , other_details [ TEXT ] | Student_Addresses : student_id [ INT ] Student_Addresses.student_id = Students.student_id , address_id [ INT ] Student_Addresses.address_id = Addresses.address_id , date_address_from [ TEXT ] , date_address_to [ TEXT ] , monthly_rental [ INT ] , other_details [ TEXT ] | Students_in_Detention : student_id [ INT ] Students_in_Detention.student_id = Students.student_id , detention_id [ INT ] Students_in_Detention.detention_id = Detention.detention_id , incident_id [ INT ] Students_in_Detention.incident_id = Behavior_Incident.incident_id | -- -- How many assessment notes are there in total?
SELECT count(*) FROM ASSESSMENT_NOTES;
-- Database schema | Ref_Address_Types : address_type_code [ TEXT ] primary_key , address_type_description [ TEXT ] | Ref_Detention_Type : detention_type_code [ TEXT ] primary_key , detention_type_description [ TEXT ] | Ref_Incident_Type : incident_type_code [ TEXT ] primary_key , incident_type_description [ TEXT ] | Addresses : address_id [ INT ] primary_key , line_1 [ TEXT ] , line_2 [ TEXT ] , line_3 [ TEXT ] , city [ TEXT ] , zip_postcode [ TEXT ] , state_province_county [ TEXT ] , country [ TEXT ] , other_address_details [ TEXT ] | Students : student_id [ INT ] primary_key , address_id [ INT ] Students.address_id = Addresses.address_id , first_name [ TEXT ] , middle_name [ TEXT ] , last_name [ TEXT ] , cell_mobile_number [ TEXT ] , email_address [ TEXT ] , date_first_rental [ TEXT ] , date_left_university [ TEXT ] , other_student_details [ TEXT ] | Teachers : teacher_id [ INT ] primary_key , address_id [ INT ] Teachers.address_id = Addresses.address_id , first_name [ TEXT ] , middle_name [ TEXT ] , last_name [ TEXT ] , gender [ TEXT ] , cell_mobile_number [ TEXT ] , email_address [ TEXT ] , other_details [ TEXT ] | Assessment_Notes : notes_id [ INT ] , student_id [ INT ] Assessment_Notes.student_id = Students.student_id , teacher_id [ INT ] Assessment_Notes.teacher_id = Teachers.teacher_id , date_of_notes [ TEXT ] , text_of_notes [ TEXT ] , other_details [ TEXT ] | Behavior_Incident : incident_id [ INT ] primary_key , incident_type_code [ TEXT ] Behavior_Incident.incident_type_code = Ref_Incident_Type.incident_type_code , student_id [ INT ] Behavior_Incident.student_id = Students.student_id , date_incident_start [ TEXT ] , date_incident_end [ TEXT ] , incident_summary [ TEXT ] , recommendations [ TEXT ] , other_details [ TEXT ] | Detention : detention_id [ INT ] primary_key , detention_type_code [ TEXT ] Detention.detention_type_code = Ref_Detention_Type.detention_type_code , teacher_id [ INT ] Detention.teacher_id = Teachers.teacher_id , datetime_detention_start [ TEXT ] , datetime_detention_end [ TEXT ] , detention_summary [ TEXT ] , other_details [ TEXT ] | Student_Addresses : student_id [ INT ] Student_Addresses.student_id = Students.student_id , address_id [ INT ] Student_Addresses.address_id = Addresses.address_id , date_address_from [ TEXT ] , date_address_to [ TEXT ] , monthly_rental [ INT ] , other_details [ TEXT ] | Students_in_Detention : student_id [ INT ] Students_in_Detention.student_id = Students.student_id , detention_id [ INT ] Students_in_Detention.detention_id = Detention.detention_id , incident_id [ INT ] Students_in_Detention.incident_id = Behavior_Incident.incident_id | -- -- What are the dates of the assessment notes?
SELECT date_of_notes FROM Assessment_Notes;
-- Database schema | Ref_Address_Types : address_type_code [ TEXT ] primary_key , address_type_description [ TEXT ] | Ref_Detention_Type : detention_type_code [ TEXT ] primary_key , detention_type_description [ TEXT ] | Ref_Incident_Type : incident_type_code [ TEXT ] primary_key , incident_type_description [ TEXT ] | Addresses : address_id [ INT ] primary_key , line_1 [ TEXT ] , line_2 [ TEXT ] , line_3 [ TEXT ] , city [ TEXT ] , zip_postcode [ TEXT ] , state_province_county [ TEXT ] , country [ TEXT ] , other_address_details [ TEXT ] | Students : student_id [ INT ] primary_key , address_id [ INT ] Students.address_id = Addresses.address_id , first_name [ TEXT ] , middle_name [ TEXT ] , last_name [ TEXT ] , cell_mobile_number [ TEXT ] , email_address [ TEXT ] , date_first_rental [ TEXT ] , date_left_university [ TEXT ] , other_student_details [ TEXT ] | Teachers : teacher_id [ INT ] primary_key , address_id [ INT ] Teachers.address_id = Addresses.address_id , first_name [ TEXT ] , middle_name [ TEXT ] , last_name [ TEXT ] , gender [ TEXT ] , cell_mobile_number [ TEXT ] , email_address [ TEXT ] , other_details [ TEXT ] | Assessment_Notes : notes_id [ INT ] , student_id [ INT ] Assessment_Notes.student_id = Students.student_id , teacher_id [ INT ] Assessment_Notes.teacher_id = Teachers.teacher_id , date_of_notes [ TEXT ] , text_of_notes [ TEXT ] , other_details [ TEXT ] | Behavior_Incident : incident_id [ INT ] primary_key , incident_type_code [ TEXT ] Behavior_Incident.incident_type_code = Ref_Incident_Type.incident_type_code , student_id [ INT ] Behavior_Incident.student_id = Students.student_id , date_incident_start [ TEXT ] , date_incident_end [ TEXT ] , incident_summary [ TEXT ] , recommendations [ TEXT ] , other_details [ TEXT ] | Detention : detention_id [ INT ] primary_key , detention_type_code [ TEXT ] Detention.detention_type_code = Ref_Detention_Type.detention_type_code , teacher_id [ INT ] Detention.teacher_id = Teachers.teacher_id , datetime_detention_start [ TEXT ] , datetime_detention_end [ TEXT ] , detention_summary [ TEXT ] , other_details [ TEXT ] | Student_Addresses : student_id [ INT ] Student_Addresses.student_id = Students.student_id , address_id [ INT ] Student_Addresses.address_id = Addresses.address_id , date_address_from [ TEXT ] , date_address_to [ TEXT ] , monthly_rental [ INT ] , other_details [ TEXT ] | Students_in_Detention : student_id [ INT ] Students_in_Detention.student_id = Students.student_id , detention_id [ INT ] Students_in_Detention.detention_id = Detention.detention_id , incident_id [ INT ] Students_in_Detention.incident_id = Behavior_Incident.incident_id | -- -- How many addresses have zip code 197?
SELECT count(*) FROM ADDRESSES WHERE zip_postcode = "197";
-- Database schema | Ref_Address_Types : address_type_code [ TEXT ] primary_key , address_type_description [ TEXT ] | Ref_Detention_Type : detention_type_code [ TEXT ] primary_key , detention_type_description [ TEXT ] | Ref_Incident_Type : incident_type_code [ TEXT ] primary_key , incident_type_description [ TEXT ] | Addresses : address_id [ INT ] primary_key , line_1 [ TEXT ] , line_2 [ TEXT ] , line_3 [ TEXT ] , city [ TEXT ] , zip_postcode [ TEXT ] , state_province_county [ TEXT ] , country [ TEXT ] , other_address_details [ TEXT ] | Students : student_id [ INT ] primary_key , address_id [ INT ] Students.address_id = Addresses.address_id , first_name [ TEXT ] , middle_name [ TEXT ] , last_name [ TEXT ] , cell_mobile_number [ TEXT ] , email_address [ TEXT ] , date_first_rental [ TEXT ] , date_left_university [ TEXT ] , other_student_details [ TEXT ] | Teachers : teacher_id [ INT ] primary_key , address_id [ INT ] Teachers.address_id = Addresses.address_id , first_name [ TEXT ] , middle_name [ TEXT ] , last_name [ TEXT ] , gender [ TEXT ] , cell_mobile_number [ TEXT ] , email_address [ TEXT ] , other_details [ TEXT ] | Assessment_Notes : notes_id [ INT ] , student_id [ INT ] Assessment_Notes.student_id = Students.student_id , teacher_id [ INT ] Assessment_Notes.teacher_id = Teachers.teacher_id , date_of_notes [ TEXT ] , text_of_notes [ TEXT ] , other_details [ TEXT ] | Behavior_Incident : incident_id [ INT ] primary_key , incident_type_code [ TEXT ] Behavior_Incident.incident_type_code = Ref_Incident_Type.incident_type_code , student_id [ INT ] Behavior_Incident.student_id = Students.student_id , date_incident_start [ TEXT ] , date_incident_end [ TEXT ] , incident_summary [ TEXT ] , recommendations [ TEXT ] , other_details [ TEXT ] | Detention : detention_id [ INT ] primary_key , detention_type_code [ TEXT ] Detention.detention_type_code = Ref_Detention_Type.detention_type_code , teacher_id [ INT ] Detention.teacher_id = Teachers.teacher_id , datetime_detention_start [ TEXT ] , datetime_detention_end [ TEXT ] , detention_summary [ TEXT ] , other_details [ TEXT ] | Student_Addresses : student_id [ INT ] Student_Addresses.student_id = Students.student_id , address_id [ INT ] Student_Addresses.address_id = Addresses.address_id , date_address_from [ TEXT ] , date_address_to [ TEXT ] , monthly_rental [ INT ] , other_details [ TEXT ] | Students_in_Detention : student_id [ INT ] Students_in_Detention.student_id = Students.student_id , detention_id [ INT ] Students_in_Detention.detention_id = Detention.detention_id , incident_id [ INT ] Students_in_Detention.incident_id = Behavior_Incident.incident_id | -- -- How many distinct incident type codes are there?
SELECT count(DISTINCT incident_type_code) FROM Behavior_Incident;
-- Database schema | Ref_Address_Types : address_type_code [ TEXT ] primary_key , address_type_description [ TEXT ] | Ref_Detention_Type : detention_type_code [ TEXT ] primary_key , detention_type_description [ TEXT ] | Ref_Incident_Type : incident_type_code [ TEXT ] primary_key , incident_type_description [ TEXT ] | Addresses : address_id [ INT ] primary_key , line_1 [ TEXT ] , line_2 [ TEXT ] , line_3 [ TEXT ] , city [ TEXT ] , zip_postcode [ TEXT ] , state_province_county [ TEXT ] , country [ TEXT ] , other_address_details [ TEXT ] | Students : student_id [ INT ] primary_key , address_id [ INT ] Students.address_id = Addresses.address_id , first_name [ TEXT ] , middle_name [ TEXT ] , last_name [ TEXT ] , cell_mobile_number [ TEXT ] , email_address [ TEXT ] , date_first_rental [ TEXT ] , date_left_university [ TEXT ] , other_student_details [ TEXT ] | Teachers : teacher_id [ INT ] primary_key , address_id [ INT ] Teachers.address_id = Addresses.address_id , first_name [ TEXT ] , middle_name [ TEXT ] , last_name [ TEXT ] , gender [ TEXT ] , cell_mobile_number [ TEXT ] , email_address [ TEXT ] , other_details [ TEXT ] | Assessment_Notes : notes_id [ INT ] , student_id [ INT ] Assessment_Notes.student_id = Students.student_id , teacher_id [ INT ] Assessment_Notes.teacher_id = Teachers.teacher_id , date_of_notes [ TEXT ] , text_of_notes [ TEXT ] , other_details [ TEXT ] | Behavior_Incident : incident_id [ INT ] primary_key , incident_type_code [ TEXT ] Behavior_Incident.incident_type_code = Ref_Incident_Type.incident_type_code , student_id [ INT ] Behavior_Incident.student_id = Students.student_id , date_incident_start [ TEXT ] , date_incident_end [ TEXT ] , incident_summary [ TEXT ] , recommendations [ TEXT ] , other_details [ TEXT ] | Detention : detention_id [ INT ] primary_key , detention_type_code [ TEXT ] Detention.detention_type_code = Ref_Detention_Type.detention_type_code , teacher_id [ INT ] Detention.teacher_id = Teachers.teacher_id , datetime_detention_start [ TEXT ] , datetime_detention_end [ TEXT ] , detention_summary [ TEXT ] , other_details [ TEXT ] | Student_Addresses : student_id [ INT ] Student_Addresses.student_id = Students.student_id , address_id [ INT ] Student_Addresses.address_id = Addresses.address_id , date_address_from [ TEXT ] , date_address_to [ TEXT ] , monthly_rental [ INT ] , other_details [ TEXT ] | Students_in_Detention : student_id [ INT ] Students_in_Detention.student_id = Students.student_id , detention_id [ INT ] Students_in_Detention.detention_id = Detention.detention_id , incident_id [ INT ] Students_in_Detention.incident_id = Behavior_Incident.incident_id | -- -- Return all distinct detention type codes.
SELECT DISTINCT detention_type_code FROM Detention;
-- Database schema | Ref_Address_Types : address_type_code [ TEXT ] primary_key , address_type_description [ TEXT ] | Ref_Detention_Type : detention_type_code [ TEXT ] primary_key , detention_type_description [ TEXT ] | Ref_Incident_Type : incident_type_code [ TEXT ] primary_key , incident_type_description [ TEXT ] | Addresses : address_id [ INT ] primary_key , line_1 [ TEXT ] , line_2 [ TEXT ] , line_3 [ TEXT ] , city [ TEXT ] , zip_postcode [ TEXT ] , state_province_county [ TEXT ] , country [ TEXT ] , other_address_details [ TEXT ] | Students : student_id [ INT ] primary_key , address_id [ INT ] Students.address_id = Addresses.address_id , first_name [ TEXT ] , middle_name [ TEXT ] , last_name [ TEXT ] , cell_mobile_number [ TEXT ] , email_address [ TEXT ] , date_first_rental [ TEXT ] , date_left_university [ TEXT ] , other_student_details [ TEXT ] | Teachers : teacher_id [ INT ] primary_key , address_id [ INT ] Teachers.address_id = Addresses.address_id , first_name [ TEXT ] , middle_name [ TEXT ] , last_name [ TEXT ] , gender [ TEXT ] , cell_mobile_number [ TEXT ] , email_address [ TEXT ] , other_details [ TEXT ] | Assessment_Notes : notes_id [ INT ] , student_id [ INT ] Assessment_Notes.student_id = Students.student_id , teacher_id [ INT ] Assessment_Notes.teacher_id = Teachers.teacher_id , date_of_notes [ TEXT ] , text_of_notes [ TEXT ] , other_details [ TEXT ] | Behavior_Incident : incident_id [ INT ] primary_key , incident_type_code [ TEXT ] Behavior_Incident.incident_type_code = Ref_Incident_Type.incident_type_code , student_id [ INT ] Behavior_Incident.student_id = Students.student_id , date_incident_start [ TEXT ] , date_incident_end [ TEXT ] , incident_summary [ TEXT ] , recommendations [ TEXT ] , other_details [ TEXT ] | Detention : detention_id [ INT ] primary_key , detention_type_code [ TEXT ] Detention.detention_type_code = Ref_Detention_Type.detention_type_code , teacher_id [ INT ] Detention.teacher_id = Teachers.teacher_id , datetime_detention_start [ TEXT ] , datetime_detention_end [ TEXT ] , detention_summary [ TEXT ] , other_details [ TEXT ] | Student_Addresses : student_id [ INT ] Student_Addresses.student_id = Students.student_id , address_id [ INT ] Student_Addresses.address_id = Addresses.address_id , date_address_from [ TEXT ] , date_address_to [ TEXT ] , monthly_rental [ INT ] , other_details [ TEXT ] | Students_in_Detention : student_id [ INT ] Students_in_Detention.student_id = Students.student_id , detention_id [ INT ] Students_in_Detention.detention_id = Detention.detention_id , incident_id [ INT ] Students_in_Detention.incident_id = Behavior_Incident.incident_id | -- -- What are the start and end dates for incidents with incident type code "NOISE"?
SELECT date_incident_start , date_incident_end FROM Behavior_Incident WHERE incident_type_code = "NOISE";
-- Database schema | Ref_Address_Types : address_type_code [ TEXT ] primary_key , address_type_description [ TEXT ] | Ref_Detention_Type : detention_type_code [ TEXT ] primary_key , detention_type_description [ TEXT ] | Ref_Incident_Type : incident_type_code [ TEXT ] primary_key , incident_type_description [ TEXT ] | Addresses : address_id [ INT ] primary_key , line_1 [ TEXT ] , line_2 [ TEXT ] , line_3 [ TEXT ] , city [ TEXT ] , zip_postcode [ TEXT ] , state_province_county [ TEXT ] , country [ TEXT ] , other_address_details [ TEXT ] | Students : student_id [ INT ] primary_key , address_id [ INT ] Students.address_id = Addresses.address_id , first_name [ TEXT ] , middle_name [ TEXT ] , last_name [ TEXT ] , cell_mobile_number [ TEXT ] , email_address [ TEXT ] , date_first_rental [ TEXT ] , date_left_university [ TEXT ] , other_student_details [ TEXT ] | Teachers : teacher_id [ INT ] primary_key , address_id [ INT ] Teachers.address_id = Addresses.address_id , first_name [ TEXT ] , middle_name [ TEXT ] , last_name [ TEXT ] , gender [ TEXT ] , cell_mobile_number [ TEXT ] , email_address [ TEXT ] , other_details [ TEXT ] | Assessment_Notes : notes_id [ INT ] , student_id [ INT ] Assessment_Notes.student_id = Students.student_id , teacher_id [ INT ] Assessment_Notes.teacher_id = Teachers.teacher_id , date_of_notes [ TEXT ] , text_of_notes [ TEXT ] , other_details [ TEXT ] | Behavior_Incident : incident_id [ INT ] primary_key , incident_type_code [ TEXT ] Behavior_Incident.incident_type_code = Ref_Incident_Type.incident_type_code , student_id [ INT ] Behavior_Incident.student_id = Students.student_id , date_incident_start [ TEXT ] , date_incident_end [ TEXT ] , incident_summary [ TEXT ] , recommendations [ TEXT ] , other_details [ TEXT ] | Detention : detention_id [ INT ] primary_key , detention_type_code [ TEXT ] Detention.detention_type_code = Ref_Detention_Type.detention_type_code , teacher_id [ INT ] Detention.teacher_id = Teachers.teacher_id , datetime_detention_start [ TEXT ] , datetime_detention_end [ TEXT ] , detention_summary [ TEXT ] , other_details [ TEXT ] | Student_Addresses : student_id [ INT ] Student_Addresses.student_id = Students.student_id , address_id [ INT ] Student_Addresses.address_id = Addresses.address_id , date_address_from [ TEXT ] , date_address_to [ TEXT ] , monthly_rental [ INT ] , other_details [ TEXT ] | Students_in_Detention : student_id [ INT ] Students_in_Detention.student_id = Students.student_id , detention_id [ INT ] Students_in_Detention.detention_id = Detention.detention_id , incident_id [ INT ] Students_in_Detention.incident_id = Behavior_Incident.incident_id | -- -- Return all detention summaries.
SELECT detention_summary FROM Detention;
-- Database schema | Ref_Address_Types : address_type_code [ TEXT ] primary_key , address_type_description [ TEXT ] | Ref_Detention_Type : detention_type_code [ TEXT ] primary_key , detention_type_description [ TEXT ] | Ref_Incident_Type : incident_type_code [ TEXT ] primary_key , incident_type_description [ TEXT ] | Addresses : address_id [ INT ] primary_key , line_1 [ TEXT ] , line_2 [ TEXT ] , line_3 [ TEXT ] , city [ TEXT ] , zip_postcode [ TEXT ] , state_province_county [ TEXT ] , country [ TEXT ] , other_address_details [ TEXT ] | Students : student_id [ INT ] primary_key , address_id [ INT ] Students.address_id = Addresses.address_id , first_name [ TEXT ] , middle_name [ TEXT ] , last_name [ TEXT ] , cell_mobile_number [ TEXT ] , email_address [ TEXT ] , date_first_rental [ TEXT ] , date_left_university [ TEXT ] , other_student_details [ TEXT ] | Teachers : teacher_id [ INT ] primary_key , address_id [ INT ] Teachers.address_id = Addresses.address_id , first_name [ TEXT ] , middle_name [ TEXT ] , last_name [ TEXT ] , gender [ TEXT ] , cell_mobile_number [ TEXT ] , email_address [ TEXT ] , other_details [ TEXT ] | Assessment_Notes : notes_id [ INT ] , student_id [ INT ] Assessment_Notes.student_id = Students.student_id , teacher_id [ INT ] Assessment_Notes.teacher_id = Teachers.teacher_id , date_of_notes [ TEXT ] , text_of_notes [ TEXT ] , other_details [ TEXT ] | Behavior_Incident : incident_id [ INT ] primary_key , incident_type_code [ TEXT ] Behavior_Incident.incident_type_code = Ref_Incident_Type.incident_type_code , student_id [ INT ] Behavior_Incident.student_id = Students.student_id , date_incident_start [ TEXT ] , date_incident_end [ TEXT ] , incident_summary [ TEXT ] , recommendations [ TEXT ] , other_details [ TEXT ] | Detention : detention_id [ INT ] primary_key , detention_type_code [ TEXT ] Detention.detention_type_code = Ref_Detention_Type.detention_type_code , teacher_id [ INT ] Detention.teacher_id = Teachers.teacher_id , datetime_detention_start [ TEXT ] , datetime_detention_end [ TEXT ] , detention_summary [ TEXT ] , other_details [ TEXT ] | Student_Addresses : student_id [ INT ] Student_Addresses.student_id = Students.student_id , address_id [ INT ] Student_Addresses.address_id = Addresses.address_id , date_address_from [ TEXT ] , date_address_to [ TEXT ] , monthly_rental [ INT ] , other_details [ TEXT ] | Students_in_Detention : student_id [ INT ] Students_in_Detention.student_id = Students.student_id , detention_id [ INT ] Students_in_Detention.detention_id = Detention.detention_id , incident_id [ INT ] Students_in_Detention.incident_id = Behavior_Incident.incident_id | -- -- Return the cell phone number and email address for all students.
SELECT cell_mobile_number , email_address FROM STUDENTS;
-- Database schema | Ref_Address_Types : address_type_code [ TEXT ] primary_key , address_type_description [ TEXT ] | Ref_Detention_Type : detention_type_code [ TEXT ] primary_key , detention_type_description [ TEXT ] | Ref_Incident_Type : incident_type_code [ TEXT ] primary_key , incident_type_description [ TEXT ] | Addresses : address_id [ INT ] primary_key , line_1 [ TEXT ] , line_2 [ TEXT ] , line_3 [ TEXT ] , city [ TEXT ] , zip_postcode [ TEXT ] , state_province_county [ TEXT ] , country [ TEXT ] , other_address_details [ TEXT ] | Students : student_id [ INT ] primary_key , address_id [ INT ] Students.address_id = Addresses.address_id , first_name [ TEXT ] , middle_name [ TEXT ] , last_name [ TEXT ] , cell_mobile_number [ TEXT ] , email_address [ TEXT ] , date_first_rental [ TEXT ] , date_left_university [ TEXT ] , other_student_details [ TEXT ] | Teachers : teacher_id [ INT ] primary_key , address_id [ INT ] Teachers.address_id = Addresses.address_id , first_name [ TEXT ] , middle_name [ TEXT ] , last_name [ TEXT ] , gender [ TEXT ] , cell_mobile_number [ TEXT ] , email_address [ TEXT ] , other_details [ TEXT ] | Assessment_Notes : notes_id [ INT ] , student_id [ INT ] Assessment_Notes.student_id = Students.student_id , teacher_id [ INT ] Assessment_Notes.teacher_id = Teachers.teacher_id , date_of_notes [ TEXT ] , text_of_notes [ TEXT ] , other_details [ TEXT ] | Behavior_Incident : incident_id [ INT ] primary_key , incident_type_code [ TEXT ] Behavior_Incident.incident_type_code = Ref_Incident_Type.incident_type_code , student_id [ INT ] Behavior_Incident.student_id = Students.student_id , date_incident_start [ TEXT ] , date_incident_end [ TEXT ] , incident_summary [ TEXT ] , recommendations [ TEXT ] , other_details [ TEXT ] | Detention : detention_id [ INT ] primary_key , detention_type_code [ TEXT ] Detention.detention_type_code = Ref_Detention_Type.detention_type_code , teacher_id [ INT ] Detention.teacher_id = Teachers.teacher_id , datetime_detention_start [ TEXT ] , datetime_detention_end [ TEXT ] , detention_summary [ TEXT ] , other_details [ TEXT ] | Student_Addresses : student_id [ INT ] Student_Addresses.student_id = Students.student_id , address_id [ INT ] Student_Addresses.address_id = Addresses.address_id , date_address_from [ TEXT ] , date_address_to [ TEXT ] , monthly_rental [ INT ] , other_details [ TEXT ] | Students_in_Detention : student_id [ INT ] Students_in_Detention.student_id = Students.student_id , detention_id [ INT ] Students_in_Detention.detention_id = Detention.detention_id , incident_id [ INT ] Students_in_Detention.incident_id = Behavior_Incident.incident_id | -- -- What is the email of the student with first name "Emma" and last name "Rohan"?
SELECT email_address FROM Students WHERE first_name = "Emma" AND last_name = "Rohan";
-- Database schema | Ref_Address_Types : address_type_code [ TEXT ] primary_key , address_type_description [ TEXT ] | Ref_Detention_Type : detention_type_code [ TEXT ] primary_key , detention_type_description [ TEXT ] | Ref_Incident_Type : incident_type_code [ TEXT ] primary_key , incident_type_description [ TEXT ] | Addresses : address_id [ INT ] primary_key , line_1 [ TEXT ] , line_2 [ TEXT ] , line_3 [ TEXT ] , city [ TEXT ] , zip_postcode [ TEXT ] , state_province_county [ TEXT ] , country [ TEXT ] , other_address_details [ TEXT ] | Students : student_id [ INT ] primary_key , address_id [ INT ] Students.address_id = Addresses.address_id , first_name [ TEXT ] , middle_name [ TEXT ] , last_name [ TEXT ] , cell_mobile_number [ TEXT ] , email_address [ TEXT ] , date_first_rental [ TEXT ] , date_left_university [ TEXT ] , other_student_details [ TEXT ] | Teachers : teacher_id [ INT ] primary_key , address_id [ INT ] Teachers.address_id = Addresses.address_id , first_name [ TEXT ] , middle_name [ TEXT ] , last_name [ TEXT ] , gender [ TEXT ] , cell_mobile_number [ TEXT ] , email_address [ TEXT ] , other_details [ TEXT ] | Assessment_Notes : notes_id [ INT ] , student_id [ INT ] Assessment_Notes.student_id = Students.student_id , teacher_id [ INT ] Assessment_Notes.teacher_id = Teachers.teacher_id , date_of_notes [ TEXT ] , text_of_notes [ TEXT ] , other_details [ TEXT ] | Behavior_Incident : incident_id [ INT ] primary_key , incident_type_code [ TEXT ] Behavior_Incident.incident_type_code = Ref_Incident_Type.incident_type_code , student_id [ INT ] Behavior_Incident.student_id = Students.student_id , date_incident_start [ TEXT ] , date_incident_end [ TEXT ] , incident_summary [ TEXT ] , recommendations [ TEXT ] , other_details [ TEXT ] | Detention : detention_id [ INT ] primary_key , detention_type_code [ TEXT ] Detention.detention_type_code = Ref_Detention_Type.detention_type_code , teacher_id [ INT ] Detention.teacher_id = Teachers.teacher_id , datetime_detention_start [ TEXT ] , datetime_detention_end [ TEXT ] , detention_summary [ TEXT ] , other_details [ TEXT ] | Student_Addresses : student_id [ INT ] Student_Addresses.student_id = Students.student_id , address_id [ INT ] Student_Addresses.address_id = Addresses.address_id , date_address_from [ TEXT ] , date_address_to [ TEXT ] , monthly_rental [ INT ] , other_details [ TEXT ] | Students_in_Detention : student_id [ INT ] Students_in_Detention.student_id = Students.student_id , detention_id [ INT ] Students_in_Detention.detention_id = Detention.detention_id , incident_id [ INT ] Students_in_Detention.incident_id = Behavior_Incident.incident_id | -- -- How many distinct students have been in detention?
SELECT count(DISTINCT student_id) FROM Students_in_Detention;
-- Database schema | Ref_Address_Types : address_type_code [ TEXT ] primary_key , address_type_description [ TEXT ] | Ref_Detention_Type : detention_type_code [ TEXT ] primary_key , detention_type_description [ TEXT ] | Ref_Incident_Type : incident_type_code [ TEXT ] primary_key , incident_type_description [ TEXT ] | Addresses : address_id [ INT ] primary_key , line_1 [ TEXT ] , line_2 [ TEXT ] , line_3 [ TEXT ] , city [ TEXT ] , zip_postcode [ TEXT ] , state_province_county [ TEXT ] , country [ TEXT ] , other_address_details [ TEXT ] | Students : student_id [ INT ] primary_key , address_id [ INT ] Students.address_id = Addresses.address_id , first_name [ TEXT ] , middle_name [ TEXT ] , last_name [ TEXT ] , cell_mobile_number [ TEXT ] , email_address [ TEXT ] , date_first_rental [ TEXT ] , date_left_university [ TEXT ] , other_student_details [ TEXT ] | Teachers : teacher_id [ INT ] primary_key , address_id [ INT ] Teachers.address_id = Addresses.address_id , first_name [ TEXT ] , middle_name [ TEXT ] , last_name [ TEXT ] , gender [ TEXT ] , cell_mobile_number [ TEXT ] , email_address [ TEXT ] , other_details [ TEXT ] | Assessment_Notes : notes_id [ INT ] , student_id [ INT ] Assessment_Notes.student_id = Students.student_id , teacher_id [ INT ] Assessment_Notes.teacher_id = Teachers.teacher_id , date_of_notes [ TEXT ] , text_of_notes [ TEXT ] , other_details [ TEXT ] | Behavior_Incident : incident_id [ INT ] primary_key , incident_type_code [ TEXT ] Behavior_Incident.incident_type_code = Ref_Incident_Type.incident_type_code , student_id [ INT ] Behavior_Incident.student_id = Students.student_id , date_incident_start [ TEXT ] , date_incident_end [ TEXT ] , incident_summary [ TEXT ] , recommendations [ TEXT ] , other_details [ TEXT ] | Detention : detention_id [ INT ] primary_key , detention_type_code [ TEXT ] Detention.detention_type_code = Ref_Detention_Type.detention_type_code , teacher_id [ INT ] Detention.teacher_id = Teachers.teacher_id , datetime_detention_start [ TEXT ] , datetime_detention_end [ TEXT ] , detention_summary [ TEXT ] , other_details [ TEXT ] | Student_Addresses : student_id [ INT ] Student_Addresses.student_id = Students.student_id , address_id [ INT ] Student_Addresses.address_id = Addresses.address_id , date_address_from [ TEXT ] , date_address_to [ TEXT ] , monthly_rental [ INT ] , other_details [ TEXT ] | Students_in_Detention : student_id [ INT ] Students_in_Detention.student_id = Students.student_id , detention_id [ INT ] Students_in_Detention.detention_id = Detention.detention_id , incident_id [ INT ] Students_in_Detention.incident_id = Behavior_Incident.incident_id | -- -- What is the gender of the teacher with last name "Medhurst"?
SELECT gender FROM TEACHERS WHERE last_name = "Medhurst";
-- Database schema | Ref_Address_Types : address_type_code [ TEXT ] primary_key , address_type_description [ TEXT ] | Ref_Detention_Type : detention_type_code [ TEXT ] primary_key , detention_type_description [ TEXT ] | Ref_Incident_Type : incident_type_code [ TEXT ] primary_key , incident_type_description [ TEXT ] | Addresses : address_id [ INT ] primary_key , line_1 [ TEXT ] , line_2 [ TEXT ] , line_3 [ TEXT ] , city [ TEXT ] , zip_postcode [ TEXT ] , state_province_county [ TEXT ] , country [ TEXT ] , other_address_details [ TEXT ] | Students : student_id [ INT ] primary_key , address_id [ INT ] Students.address_id = Addresses.address_id , first_name [ TEXT ] , middle_name [ TEXT ] , last_name [ TEXT ] , cell_mobile_number [ TEXT ] , email_address [ TEXT ] , date_first_rental [ TEXT ] , date_left_university [ TEXT ] , other_student_details [ TEXT ] | Teachers : teacher_id [ INT ] primary_key , address_id [ INT ] Teachers.address_id = Addresses.address_id , first_name [ TEXT ] , middle_name [ TEXT ] , last_name [ TEXT ] , gender [ TEXT ] , cell_mobile_number [ TEXT ] , email_address [ TEXT ] , other_details [ TEXT ] | Assessment_Notes : notes_id [ INT ] , student_id [ INT ] Assessment_Notes.student_id = Students.student_id , teacher_id [ INT ] Assessment_Notes.teacher_id = Teachers.teacher_id , date_of_notes [ TEXT ] , text_of_notes [ TEXT ] , other_details [ TEXT ] | Behavior_Incident : incident_id [ INT ] primary_key , incident_type_code [ TEXT ] Behavior_Incident.incident_type_code = Ref_Incident_Type.incident_type_code , student_id [ INT ] Behavior_Incident.student_id = Students.student_id , date_incident_start [ TEXT ] , date_incident_end [ TEXT ] , incident_summary [ TEXT ] , recommendations [ TEXT ] , other_details [ TEXT ] | Detention : detention_id [ INT ] primary_key , detention_type_code [ TEXT ] Detention.detention_type_code = Ref_Detention_Type.detention_type_code , teacher_id [ INT ] Detention.teacher_id = Teachers.teacher_id , datetime_detention_start [ TEXT ] , datetime_detention_end [ TEXT ] , detention_summary [ TEXT ] , other_details [ TEXT ] | Student_Addresses : student_id [ INT ] Student_Addresses.student_id = Students.student_id , address_id [ INT ] Student_Addresses.address_id = Addresses.address_id , date_address_from [ TEXT ] , date_address_to [ TEXT ] , monthly_rental [ INT ] , other_details [ TEXT ] | Students_in_Detention : student_id [ INT ] Students_in_Detention.student_id = Students.student_id , detention_id [ INT ] Students_in_Detention.detention_id = Detention.detention_id , incident_id [ INT ] Students_in_Detention.incident_id = Behavior_Incident.incident_id | -- -- What is the incident type description for the incident type with code "VIOLENCE"?
SELECT incident_type_description FROM Ref_Incident_Type WHERE incident_type_code = "VIOLENCE";
-- Database schema | Ref_Address_Types : address_type_code [ TEXT ] primary_key , address_type_description [ TEXT ] | Ref_Detention_Type : detention_type_code [ TEXT ] primary_key , detention_type_description [ TEXT ] | Ref_Incident_Type : incident_type_code [ TEXT ] primary_key , incident_type_description [ TEXT ] | Addresses : address_id [ INT ] primary_key , line_1 [ TEXT ] , line_2 [ TEXT ] , line_3 [ TEXT ] , city [ TEXT ] , zip_postcode [ TEXT ] , state_province_county [ TEXT ] , country [ TEXT ] , other_address_details [ TEXT ] | Students : student_id [ INT ] primary_key , address_id [ INT ] Students.address_id = Addresses.address_id , first_name [ TEXT ] , middle_name [ TEXT ] , last_name [ TEXT ] , cell_mobile_number [ TEXT ] , email_address [ TEXT ] , date_first_rental [ TEXT ] , date_left_university [ TEXT ] , other_student_details [ TEXT ] | Teachers : teacher_id [ INT ] primary_key , address_id [ INT ] Teachers.address_id = Addresses.address_id , first_name [ TEXT ] , middle_name [ TEXT ] , last_name [ TEXT ] , gender [ TEXT ] , cell_mobile_number [ TEXT ] , email_address [ TEXT ] , other_details [ TEXT ] | Assessment_Notes : notes_id [ INT ] , student_id [ INT ] Assessment_Notes.student_id = Students.student_id , teacher_id [ INT ] Assessment_Notes.teacher_id = Teachers.teacher_id , date_of_notes [ TEXT ] , text_of_notes [ TEXT ] , other_details [ TEXT ] | Behavior_Incident : incident_id [ INT ] primary_key , incident_type_code [ TEXT ] Behavior_Incident.incident_type_code = Ref_Incident_Type.incident_type_code , student_id [ INT ] Behavior_Incident.student_id = Students.student_id , date_incident_start [ TEXT ] , date_incident_end [ TEXT ] , incident_summary [ TEXT ] , recommendations [ TEXT ] , other_details [ TEXT ] | Detention : detention_id [ INT ] primary_key , detention_type_code [ TEXT ] Detention.detention_type_code = Ref_Detention_Type.detention_type_code , teacher_id [ INT ] Detention.teacher_id = Teachers.teacher_id , datetime_detention_start [ TEXT ] , datetime_detention_end [ TEXT ] , detention_summary [ TEXT ] , other_details [ TEXT ] | Student_Addresses : student_id [ INT ] Student_Addresses.student_id = Students.student_id , address_id [ INT ] Student_Addresses.address_id = Addresses.address_id , date_address_from [ TEXT ] , date_address_to [ TEXT ] , monthly_rental [ INT ] , other_details [ TEXT ] | Students_in_Detention : student_id [ INT ] Students_in_Detention.student_id = Students.student_id , detention_id [ INT ] Students_in_Detention.detention_id = Detention.detention_id , incident_id [ INT ] Students_in_Detention.incident_id = Behavior_Incident.incident_id | -- -- Find the maximum and minimum monthly rental for all student addresses.
SELECT max(monthly_rental) , min(monthly_rental) FROM Student_Addresses;
-- Database schema | Ref_Address_Types : address_type_code [ TEXT ] primary_key , address_type_description [ TEXT ] | Ref_Detention_Type : detention_type_code [ TEXT ] primary_key , detention_type_description [ TEXT ] | Ref_Incident_Type : incident_type_code [ TEXT ] primary_key , incident_type_description [ TEXT ] | Addresses : address_id [ INT ] primary_key , line_1 [ TEXT ] , line_2 [ TEXT ] , line_3 [ TEXT ] , city [ TEXT ] , zip_postcode [ TEXT ] , state_province_county [ TEXT ] , country [ TEXT ] , other_address_details [ TEXT ] | Students : student_id [ INT ] primary_key , address_id [ INT ] Students.address_id = Addresses.address_id , first_name [ TEXT ] , middle_name [ TEXT ] , last_name [ TEXT ] , cell_mobile_number [ TEXT ] , email_address [ TEXT ] , date_first_rental [ TEXT ] , date_left_university [ TEXT ] , other_student_details [ TEXT ] | Teachers : teacher_id [ INT ] primary_key , address_id [ INT ] Teachers.address_id = Addresses.address_id , first_name [ TEXT ] , middle_name [ TEXT ] , last_name [ TEXT ] , gender [ TEXT ] , cell_mobile_number [ TEXT ] , email_address [ TEXT ] , other_details [ TEXT ] | Assessment_Notes : notes_id [ INT ] , student_id [ INT ] Assessment_Notes.student_id = Students.student_id , teacher_id [ INT ] Assessment_Notes.teacher_id = Teachers.teacher_id , date_of_notes [ TEXT ] , text_of_notes [ TEXT ] , other_details [ TEXT ] | Behavior_Incident : incident_id [ INT ] primary_key , incident_type_code [ TEXT ] Behavior_Incident.incident_type_code = Ref_Incident_Type.incident_type_code , student_id [ INT ] Behavior_Incident.student_id = Students.student_id , date_incident_start [ TEXT ] , date_incident_end [ TEXT ] , incident_summary [ TEXT ] , recommendations [ TEXT ] , other_details [ TEXT ] | Detention : detention_id [ INT ] primary_key , detention_type_code [ TEXT ] Detention.detention_type_code = Ref_Detention_Type.detention_type_code , teacher_id [ INT ] Detention.teacher_id = Teachers.teacher_id , datetime_detention_start [ TEXT ] , datetime_detention_end [ TEXT ] , detention_summary [ TEXT ] , other_details [ TEXT ] | Student_Addresses : student_id [ INT ] Student_Addresses.student_id = Students.student_id , address_id [ INT ] Student_Addresses.address_id = Addresses.address_id , date_address_from [ TEXT ] , date_address_to [ TEXT ] , monthly_rental [ INT ] , other_details [ TEXT ] | Students_in_Detention : student_id [ INT ] Students_in_Detention.student_id = Students.student_id , detention_id [ INT ] Students_in_Detention.detention_id = Detention.detention_id , incident_id [ INT ] Students_in_Detention.incident_id = Behavior_Incident.incident_id | -- -- Find the first names of teachers whose email address contains the word "man".
SELECT first_name FROM Teachers WHERE email_address LIKE '%man%';