text stringlengths 182 1.07k |
|---|
convert the question into postgresql query using the context values
### Question:
List all the cities in a decreasing order of each city's stations' highest latitude.
### Context:
CREATE TABLE station (city VARCHAR, lat INTEGER)
###Answer:
SELECT city FROM station GROUP BY city ORDER BY MAX(lat) DESC |
convert the question into postgresql query using the context values
### Question:
What are the dates that had the top 5 cloud cover rates? Also tell me the cloud cover rate.
### Context:
CREATE TABLE weather (date VARCHAR, cloud_cover VARCHAR)
###Answer:
SELECT date, cloud_cover FROM weather ORDER BY cloud_cover DESC ... |
convert the question into postgresql query using the context values
### Question:
What are the ids and durations of the trips with the top 3 durations?
### Context:
CREATE TABLE trip (id VARCHAR, duration VARCHAR)
###Answer:
SELECT id, duration FROM trip ORDER BY duration DESC LIMIT 3 |
convert the question into postgresql query using the context values
### Question:
For each station, return its longitude and the average duration of trips that started from the station.
### Context:
CREATE TABLE station (name VARCHAR, long VARCHAR, id VARCHAR); CREATE TABLE trip (duration INTEGER, start_station_id VAR... |
convert the question into postgresql query using the context values
### Question:
For each station, find its latitude and the minimum duration of trips that ended at the station.
### Context:
CREATE TABLE trip (duration INTEGER, end_station_id VARCHAR); CREATE TABLE station (name VARCHAR, lat VARCHAR, id VARCHAR)
###A... |
convert the question into postgresql query using the context values
### Question:
List all the distinct stations from which a trip of duration below 100 started.
### Context:
CREATE TABLE trip (start_station_name VARCHAR, duration INTEGER)
###Answer:
SELECT DISTINCT start_station_name FROM trip WHERE duration < 100 |
convert the question into postgresql query using the context values
### Question:
Find all the zip codes in which the max dew point have never reached 70.
### Context:
CREATE TABLE weather (zip_code VARCHAR, max_dew_point_f VARCHAR)
###Answer:
SELECT DISTINCT zip_code FROM weather EXCEPT SELECT DISTINCT zip_code FROM ... |
convert the question into postgresql query using the context values
### Question:
Find the id for the trips that lasted at least as long as the average duration of trips in zip code 94103.
### Context:
CREATE TABLE trip (id VARCHAR, duration INTEGER, zip_code VARCHAR)
###Answer:
SELECT id FROM trip WHERE duration >= (... |
convert the question into postgresql query using the context values
### Question:
What are the dates in which the mean sea level pressure was between 30.3 and 31?
### Context:
CREATE TABLE weather (date VARCHAR, mean_sea_level_pressure_inches INTEGER)
###Answer:
SELECT date FROM weather WHERE mean_sea_level_pressure_i... |
convert the question into postgresql query using the context values
### Question:
Find the day in which the difference between the max temperature and min temperature was the smallest. Also report the difference.
### Context:
CREATE TABLE weather (date VARCHAR, max_temperature_f VARCHAR, min_temperature_f VARCHAR)
###... |
convert the question into postgresql query using the context values
### Question:
What are the id and name of the stations that have ever had more than 12 bikes available?
### Context:
CREATE TABLE station (id VARCHAR, name VARCHAR); CREATE TABLE status (station_id VARCHAR, bikes_available INTEGER)
###Answer:
SELECT D... |
convert the question into postgresql query using the context values
### Question:
Give me the zip code where the average mean humidity is below 70 and at least 100 trips took place.
### Context:
CREATE TABLE weather (zip_code VARCHAR, mean_humidity INTEGER); CREATE TABLE trip (zip_code VARCHAR, mean_humidity INTEGER)
... |
convert the question into postgresql query using the context values
### Question:
What are the names of stations that are located in Palo Alto city but have never been the ending point of trips more than 100 times?
### Context:
CREATE TABLE trip (name VARCHAR, end_station_name VARCHAR, city VARCHAR); CREATE TABLE stat... |
convert the question into postgresql query using the context values
### Question:
How many trips started from Mountain View city and ended at Palo Alto city?
### Context:
CREATE TABLE station (city VARCHAR, id VARCHAR); CREATE TABLE trip (end_station_id VARCHAR, id VARCHAR); CREATE TABLE station (id VARCHAR, city VARC... |
convert the question into postgresql query using the context values
### Question:
What is the average latitude and longitude of the starting points of all trips?
### Context:
CREATE TABLE trip (start_station_id VARCHAR); CREATE TABLE station (lat INTEGER, long INTEGER, id VARCHAR)
###Answer:
SELECT AVG(T1.lat), AVG(T1... |
convert the question into postgresql query using the context values
### Question:
How many books are there?
### Context:
CREATE TABLE book (Id VARCHAR)
###Answer:
SELECT COUNT(*) FROM book |
convert the question into postgresql query using the context values
### Question:
List the writers of the books in ascending alphabetical order.
### Context:
CREATE TABLE book (Writer VARCHAR)
###Answer:
SELECT Writer FROM book ORDER BY Writer |
convert the question into postgresql query using the context values
### Question:
List the titles of the books in ascending order of issues.
### Context:
CREATE TABLE book (Title VARCHAR, Issues VARCHAR)
###Answer:
SELECT Title FROM book ORDER BY Issues |
convert the question into postgresql query using the context values
### Question:
What are the titles of the books whose writer is not "Elaine Lee"?
### Context:
CREATE TABLE book (Title VARCHAR, Writer VARCHAR)
###Answer:
SELECT Title FROM book WHERE Writer <> "Elaine Lee" |
convert the question into postgresql query using the context values
### Question:
What are the title and issues of the books?
### Context:
CREATE TABLE book (Title VARCHAR, Issues VARCHAR)
###Answer:
SELECT Title, Issues FROM book |
convert the question into postgresql query using the context values
### Question:
What are the dates of publications in descending order of price?
### Context:
CREATE TABLE publication (Publication_Date VARCHAR, Price VARCHAR)
###Answer:
SELECT Publication_Date FROM publication ORDER BY Price DESC |
convert the question into postgresql query using the context values
### Question:
What are the distinct publishers of publications with price higher than 5000000?
### Context:
CREATE TABLE publication (Publisher VARCHAR, Price INTEGER)
###Answer:
SELECT DISTINCT Publisher FROM publication WHERE Price > 5000000 |
convert the question into postgresql query using the context values
### Question:
List the publisher of the publication with the highest price.
### Context:
CREATE TABLE publication (Publisher VARCHAR, Price VARCHAR)
###Answer:
SELECT Publisher FROM publication ORDER BY Price DESC LIMIT 1 |
convert the question into postgresql query using the context values
### Question:
List the publication dates of publications with 3 lowest prices.
### Context:
CREATE TABLE publication (Publication_Date VARCHAR, Price VARCHAR)
###Answer:
SELECT Publication_Date FROM publication ORDER BY Price LIMIT 3 |
convert the question into postgresql query using the context values
### Question:
Show the title and publication dates of books.
### Context:
CREATE TABLE book (Title VARCHAR, Book_ID VARCHAR); CREATE TABLE publication (Publication_Date VARCHAR, Book_ID VARCHAR)
###Answer:
SELECT T1.Title, T2.Publication_Date FROM boo... |
convert the question into postgresql query using the context values
### Question:
Show writers who have published a book with price more than 4000000.
### Context:
CREATE TABLE publication (Book_ID VARCHAR, Price INTEGER); CREATE TABLE book (Writer VARCHAR, Book_ID VARCHAR)
###Answer:
SELECT T1.Writer FROM book AS T1 ... |
convert the question into postgresql query using the context values
### Question:
Show the titles of books in descending order of publication price.
### Context:
CREATE TABLE publication (Book_ID VARCHAR, Price VARCHAR); CREATE TABLE book (Title VARCHAR, Book_ID VARCHAR)
###Answer:
SELECT T1.Title FROM book AS T1 JOIN... |
convert the question into postgresql query using the context values
### Question:
Show publishers that have more than one publication.
### Context:
CREATE TABLE publication (Publisher VARCHAR)
###Answer:
SELECT Publisher FROM publication GROUP BY Publisher HAVING COUNT(*) > 1 |
convert the question into postgresql query using the context values
### Question:
Show different publishers together with the number of publications they have.
### Context:
CREATE TABLE publication (Publisher VARCHAR)
###Answer:
SELECT Publisher, COUNT(*) FROM publication GROUP BY Publisher |
convert the question into postgresql query using the context values
### Question:
Please show the most common publication date.
### Context:
CREATE TABLE publication (Publication_Date VARCHAR)
###Answer:
SELECT Publication_Date FROM publication GROUP BY Publication_Date ORDER BY COUNT(*) DESC LIMIT 1 |
convert the question into postgresql query using the context values
### Question:
List the writers who have written more than one book.
### Context:
CREATE TABLE book (Writer VARCHAR)
###Answer:
SELECT Writer FROM book GROUP BY Writer HAVING COUNT(*) > 1 |
convert the question into postgresql query using the context values
### Question:
List the titles of books that are not published.
### Context:
CREATE TABLE book (Title VARCHAR, Book_ID VARCHAR); CREATE TABLE publication (Title VARCHAR, Book_ID VARCHAR)
###Answer:
SELECT Title FROM book WHERE NOT Book_ID IN (SELECT Bo... |
convert the question into postgresql query using the context values
### Question:
Show the publishers that have publications with price higher than 10000000 and publications with price lower than 5000000.
### Context:
CREATE TABLE publication (Publisher VARCHAR, Price INTEGER)
###Answer:
SELECT Publisher FROM publicat... |
convert the question into postgresql query using the context values
### Question:
What is the number of distinct publication dates?
### Context:
CREATE TABLE publication (Publication_Date VARCHAR)
###Answer:
SELECT COUNT(DISTINCT Publication_Date) FROM publication |
convert the question into postgresql query using the context values
### Question:
Show the prices of publications whose publisher is either "Person" or "Wiley"
### Context:
CREATE TABLE publication (Price VARCHAR, Publisher VARCHAR)
###Answer:
SELECT Price FROM publication WHERE Publisher = "Person" OR Publisher = "Wi... |
convert the question into postgresql query using the context values
### Question:
How many actors are there?
### Context:
CREATE TABLE actor (Id VARCHAR)
###Answer:
SELECT COUNT(*) FROM actor |
convert the question into postgresql query using the context values
### Question:
List the name of actors in ascending alphabetical order.
### Context:
CREATE TABLE actor (Name VARCHAR)
###Answer:
SELECT Name FROM actor ORDER BY Name |
convert the question into postgresql query using the context values
### Question:
What are the characters and duration of actors?
### Context:
CREATE TABLE actor (Character VARCHAR, Duration VARCHAR)
###Answer:
SELECT Character, Duration FROM actor |
convert the question into postgresql query using the context values
### Question:
List the name of actors whose age is not 20.
### Context:
CREATE TABLE actor (Name VARCHAR, Age VARCHAR)
###Answer:
SELECT Name FROM actor WHERE Age <> 20 |
convert the question into postgresql query using the context values
### Question:
What are the characters of actors in descending order of age?
### Context:
CREATE TABLE actor (Character VARCHAR, age VARCHAR)
###Answer:
SELECT Character FROM actor ORDER BY age DESC |
convert the question into postgresql query using the context values
### Question:
What is the duration of the oldest actor?
### Context:
CREATE TABLE actor (Duration VARCHAR, Age VARCHAR)
###Answer:
SELECT Duration FROM actor ORDER BY Age DESC LIMIT 1 |
convert the question into postgresql query using the context values
### Question:
What are the names of musicals with nominee "Bob Fosse"?
### Context:
CREATE TABLE musical (Name VARCHAR, Nominee VARCHAR)
###Answer:
SELECT Name FROM musical WHERE Nominee = "Bob Fosse" |
convert the question into postgresql query using the context values
### Question:
What are the distinct nominees of the musicals with the award that is not "Tony Award"?
### Context:
CREATE TABLE musical (Nominee VARCHAR, Award VARCHAR)
###Answer:
SELECT DISTINCT Nominee FROM musical WHERE Award <> "Tony Award" |
convert the question into postgresql query using the context values
### Question:
Show names of actors and names of musicals they are in.
### Context:
CREATE TABLE actor (Name VARCHAR, Musical_ID VARCHAR); CREATE TABLE musical (Name VARCHAR, Musical_ID VARCHAR)
###Answer:
SELECT T1.Name, T2.Name FROM actor AS T1 JOIN ... |
convert the question into postgresql query using the context values
### Question:
Show names of actors that have appeared in musical with name "The Phantom of the Opera".
### Context:
CREATE TABLE actor (Name VARCHAR, Musical_ID VARCHAR); CREATE TABLE musical (Musical_ID VARCHAR, Name VARCHAR)
###Answer:
SELECT T1.Nam... |
convert the question into postgresql query using the context values
### Question:
Show names of actors in descending order of the year their musical is awarded.
### Context:
CREATE TABLE musical (Musical_ID VARCHAR, Year VARCHAR); CREATE TABLE actor (Name VARCHAR, Musical_ID VARCHAR)
###Answer:
SELECT T1.Name FROM act... |
convert the question into postgresql query using the context values
### Question:
Show names of musicals and the number of actors who have appeared in the musicals.
### Context:
CREATE TABLE actor (Musical_ID VARCHAR); CREATE TABLE musical (Name VARCHAR, Musical_ID VARCHAR)
###Answer:
SELECT T2.Name, COUNT(*) FROM act... |
convert the question into postgresql query using the context values
### Question:
Show names of musicals which have at least three actors.
### Context:
CREATE TABLE actor (Musical_ID VARCHAR); CREATE TABLE musical (Name VARCHAR, Musical_ID VARCHAR)
###Answer:
SELECT T2.Name FROM actor AS T1 JOIN musical AS T2 ON T1.Mu... |
convert the question into postgresql query using the context values
### Question:
Show different nominees and the number of musicals they have been nominated.
### Context:
CREATE TABLE musical (Nominee VARCHAR)
###Answer:
SELECT Nominee, COUNT(*) FROM musical GROUP BY Nominee |
convert the question into postgresql query using the context values
### Question:
Please show the nominee who has been nominated the greatest number of times.
### Context:
CREATE TABLE musical (Nominee VARCHAR)
###Answer:
SELECT Nominee FROM musical GROUP BY Nominee ORDER BY COUNT(*) DESC LIMIT 1 |
convert the question into postgresql query using the context values
### Question:
List the most common result of the musicals.
### Context:
CREATE TABLE musical (RESULT VARCHAR)
###Answer:
SELECT RESULT FROM musical GROUP BY RESULT ORDER BY COUNT(*) DESC LIMIT 1 |
convert the question into postgresql query using the context values
### Question:
List the nominees that have been nominated more than two musicals.
### Context:
CREATE TABLE musical (Nominee VARCHAR)
###Answer:
SELECT Nominee FROM musical GROUP BY Nominee HAVING COUNT(*) > 2 |
convert the question into postgresql query using the context values
### Question:
List the name of musicals that do not have actors.
### Context:
CREATE TABLE actor (Name VARCHAR, Musical_ID VARCHAR); CREATE TABLE musical (Name VARCHAR, Musical_ID VARCHAR)
###Answer:
SELECT Name FROM musical WHERE NOT Musical_ID IN (S... |
convert the question into postgresql query using the context values
### Question:
Show the nominees that have nominated musicals for both "Tony Award" and "Drama Desk Award".
### Context:
CREATE TABLE musical (Nominee VARCHAR, Award VARCHAR)
###Answer:
SELECT Nominee FROM musical WHERE Award = "Tony Award" INTERSECT S... |
convert the question into postgresql query using the context values
### Question:
Show the musical nominee with award "Bob Fosse" or "Cleavant Derricks".
### Context:
CREATE TABLE musical (Nominee VARCHAR, Award VARCHAR)
###Answer:
SELECT Nominee FROM musical WHERE Award = "Tony Award" OR Award = "Cleavant Derricks" |
convert the question into postgresql query using the context values
### Question:
Find the emails of the user named "Mary".
### Context:
CREATE TABLE user_profiles (email VARCHAR, name VARCHAR)
###Answer:
SELECT email FROM user_profiles WHERE name = 'Mary' |
convert the question into postgresql query using the context values
### Question:
What is the partition id of the user named "Iron Man".
### Context:
CREATE TABLE user_profiles (partitionid VARCHAR, name VARCHAR)
###Answer:
SELECT partitionid FROM user_profiles WHERE name = 'Iron Man' |
convert the question into postgresql query using the context values
### Question:
How many users are there?
### Context:
CREATE TABLE user_profiles (Id VARCHAR)
###Answer:
SELECT COUNT(*) FROM user_profiles |
convert the question into postgresql query using the context values
### Question:
How many followers does each user have?
### Context:
CREATE TABLE follows (Id VARCHAR)
###Answer:
SELECT COUNT(*) FROM follows |
convert the question into postgresql query using the context values
### Question:
Find the number of followers for each user.
### Context:
CREATE TABLE follows (f1 VARCHAR)
###Answer:
SELECT COUNT(*) FROM follows GROUP BY f1 |
convert the question into postgresql query using the context values
### Question:
Find the number of tweets in record.
### Context:
CREATE TABLE tweets (Id VARCHAR)
###Answer:
SELECT COUNT(*) FROM tweets |
convert the question into postgresql query using the context values
### Question:
Find the number of users who posted some tweets.
### Context:
CREATE TABLE tweets (UID VARCHAR)
###Answer:
SELECT COUNT(DISTINCT UID) FROM tweets |
convert the question into postgresql query using the context values
### Question:
Find the name and email of the user whose name contains the word ‘Swift’.
### Context:
CREATE TABLE user_profiles (name VARCHAR, email VARCHAR)
###Answer:
SELECT name, email FROM user_profiles WHERE name LIKE '%Swift%' |
convert the question into postgresql query using the context values
### Question:
Find the names of users whose emails contain ‘superstar’ or ‘edu’.
### Context:
CREATE TABLE user_profiles (name VARCHAR, email VARCHAR)
###Answer:
SELECT name FROM user_profiles WHERE email LIKE '%superstar%' OR email LIKE '%edu%' |
convert the question into postgresql query using the context values
### Question:
Return the text of tweets about the topic 'intern'.
### Context:
CREATE TABLE tweets (text VARCHAR)
###Answer:
SELECT text FROM tweets WHERE text LIKE '%intern%' |
convert the question into postgresql query using the context values
### Question:
Find the name and email of the users who have more than 1000 followers.
### Context:
CREATE TABLE user_profiles (name VARCHAR, email VARCHAR, followers INTEGER)
###Answer:
SELECT name, email FROM user_profiles WHERE followers > 1000 |
convert the question into postgresql query using the context values
### Question:
Find the names of the users whose number of followers is greater than that of the user named "Tyler Swift".
### Context:
CREATE TABLE follows (f1 VARCHAR); CREATE TABLE user_profiles (name VARCHAR, uid VARCHAR)
###Answer:
SELECT T1.name ... |
convert the question into postgresql query using the context values
### Question:
Find the name and email for the users who have more than one follower.
### Context:
CREATE TABLE follows (f1 VARCHAR); CREATE TABLE user_profiles (name VARCHAR, email VARCHAR, uid VARCHAR)
###Answer:
SELECT T1.name, T1.email FROM user_pr... |
convert the question into postgresql query using the context values
### Question:
Find the names of users who have more than one tweet.
### Context:
CREATE TABLE tweets (uid VARCHAR); CREATE TABLE user_profiles (name VARCHAR, uid VARCHAR)
###Answer:
SELECT T1.name FROM user_profiles AS T1 JOIN tweets AS T2 ON T1.uid =... |
convert the question into postgresql query using the context values
### Question:
Find the id of users who are followed by Mary and Susan.
### Context:
CREATE TABLE follows (f1 VARCHAR, f2 VARCHAR); CREATE TABLE user_profiles (uid VARCHAR, name VARCHAR)
###Answer:
SELECT T2.f1 FROM user_profiles AS T1 JOIN follows AS ... |
convert the question into postgresql query using the context values
### Question:
Find the id of users who are followed by Mary or Susan.
### Context:
CREATE TABLE follows (f1 VARCHAR, f2 VARCHAR); CREATE TABLE user_profiles (uid VARCHAR, name VARCHAR)
###Answer:
SELECT T2.f1 FROM user_profiles AS T1 JOIN follows AS T... |
convert the question into postgresql query using the context values
### Question:
Find the name of the user who has the largest number of followers.
### Context:
CREATE TABLE user_profiles (name VARCHAR, followers VARCHAR)
###Answer:
SELECT name FROM user_profiles ORDER BY followers DESC LIMIT 1 |
convert the question into postgresql query using the context values
### Question:
Find the name and email of the user followed by the least number of people.
### Context:
CREATE TABLE user_profiles (name VARCHAR, email VARCHAR, followers VARCHAR)
###Answer:
SELECT name, email FROM user_profiles ORDER BY followers LIMI... |
convert the question into postgresql query using the context values
### Question:
List the name and number of followers for each user, and sort the results by the number of followers in descending order.
### Context:
CREATE TABLE user_profiles (name VARCHAR, followers VARCHAR)
###Answer:
SELECT name, followers FROM us... |
convert the question into postgresql query using the context values
### Question:
List the names of 5 users followed by the largest number of other users.
### Context:
CREATE TABLE user_profiles (name VARCHAR, followers VARCHAR)
###Answer:
SELECT name FROM user_profiles ORDER BY followers DESC LIMIT 5 |
convert the question into postgresql query using the context values
### Question:
List the text of all tweets in the order of date.
### Context:
CREATE TABLE tweets (text VARCHAR, createdate VARCHAR)
###Answer:
SELECT text FROM tweets ORDER BY createdate |
convert the question into postgresql query using the context values
### Question:
Find the name of each user and number of tweets tweeted by each of them.
### Context:
CREATE TABLE tweets (uid VARCHAR); CREATE TABLE user_profiles (name VARCHAR, uid VARCHAR)
###Answer:
SELECT T1.name, COUNT(*) FROM user_profiles AS T1 ... |
convert the question into postgresql query using the context values
### Question:
Find the name and partition id for users who tweeted less than twice.
### Context:
CREATE TABLE user_profiles (name VARCHAR, partitionid VARCHAR, uid VARCHAR); CREATE TABLE tweets (uid VARCHAR)
###Answer:
SELECT T1.name, T1.partitionid F... |
convert the question into postgresql query using the context values
### Question:
Find the name of the user who tweeted more than once, and number of tweets tweeted by them.
### Context:
CREATE TABLE tweets (uid VARCHAR); CREATE TABLE user_profiles (name VARCHAR, uid VARCHAR)
###Answer:
SELECT T1.name, COUNT(*) FROM u... |
convert the question into postgresql query using the context values
### Question:
Find the average number of followers for the users who do not have any tweet.
### Context:
CREATE TABLE user_profiles (followers INTEGER, UID VARCHAR); CREATE TABLE tweets (followers INTEGER, UID VARCHAR)
###Answer:
SELECT AVG(followers)... |
convert the question into postgresql query using the context values
### Question:
Find the average number of followers for the users who had some tweets.
### Context:
CREATE TABLE user_profiles (followers INTEGER, UID VARCHAR); CREATE TABLE tweets (followers INTEGER, UID VARCHAR)
###Answer:
SELECT AVG(followers) FROM ... |
convert the question into postgresql query using the context values
### Question:
Find the maximum and total number of followers of all users.
### Context:
CREATE TABLE user_profiles (followers INTEGER)
###Answer:
SELECT MAX(followers), SUM(followers) FROM user_profiles |
convert the question into postgresql query using the context values
### Question:
Find the names of all the catalog entries.
### Context:
CREATE TABLE catalog_contents (catalog_entry_name VARCHAR)
###Answer:
SELECT DISTINCT (catalog_entry_name) FROM catalog_contents |
convert the question into postgresql query using the context values
### Question:
Find the list of attribute data types possessed by more than 3 attribute definitions.
### Context:
CREATE TABLE Attribute_Definitions (attribute_data_type VARCHAR)
###Answer:
SELECT attribute_data_type FROM Attribute_Definitions GROUP BY... |
convert the question into postgresql query using the context values
### Question:
What is the attribute data type of the attribute with name "Green"?
### Context:
CREATE TABLE Attribute_Definitions (attribute_data_type VARCHAR, attribute_name VARCHAR)
###Answer:
SELECT attribute_data_type FROM Attribute_Definitions WH... |
convert the question into postgresql query using the context values
### Question:
Find the name and level of catalog structure with level between 5 and 10.
### Context:
CREATE TABLE Catalog_Structure (catalog_level_name VARCHAR, catalog_level_number INTEGER)
###Answer:
SELECT catalog_level_name, catalog_level_number F... |
convert the question into postgresql query using the context values
### Question:
Find all the catalog publishers whose name contains "Murray"
### Context:
CREATE TABLE catalogs (catalog_publisher VARCHAR)
###Answer:
SELECT DISTINCT (catalog_publisher) FROM catalogs WHERE catalog_publisher LIKE "%Murray%" |
convert the question into postgresql query using the context values
### Question:
Which catalog publisher has published the most catalogs?
### Context:
CREATE TABLE catalogs (catalog_publisher VARCHAR)
###Answer:
SELECT catalog_publisher FROM catalogs GROUP BY catalog_publisher ORDER BY COUNT(*) DESC LIMIT 1 |
convert the question into postgresql query using the context values
### Question:
Find the names and publication dates of all catalogs that have catalog level number greater than 5.
### Context:
CREATE TABLE catalogs (catalog_name VARCHAR, date_of_publication VARCHAR, catalog_id VARCHAR); CREATE TABLE catalog_structur... |
convert the question into postgresql query using the context values
### Question:
What are the entry names of catalog with the attribute possessed by most entries.
### Context:
CREATE TABLE Catalog_Contents_Additional_Attributes (catalog_entry_id VARCHAR, attribute_value VARCHAR); CREATE TABLE Catalog_Contents (catalo... |
convert the question into postgresql query using the context values
### Question:
What is the entry name of the most expensive catalog (in USD)?
### Context:
CREATE TABLE catalog_contents (catalog_entry_name VARCHAR, price_in_dollars VARCHAR)
###Answer:
SELECT catalog_entry_name FROM catalog_contents ORDER BY price_in... |
convert the question into postgresql query using the context values
### Question:
What is the level name of the cheapest catalog (in USD)?
### Context:
CREATE TABLE catalog_structure (catalog_level_name VARCHAR, catalog_level_number VARCHAR); CREATE TABLE catalog_contents (catalog_level_number VARCHAR, price_in_dollar... |
convert the question into postgresql query using the context values
### Question:
What are the average and minimum price (in Euro) of all products?
### Context:
CREATE TABLE catalog_contents (price_in_euros INTEGER)
###Answer:
SELECT AVG(price_in_euros), MIN(price_in_euros) FROM catalog_contents |
convert the question into postgresql query using the context values
### Question:
What is the product with the highest height? Give me the catalog entry name.
### Context:
CREATE TABLE catalog_contents (catalog_entry_name VARCHAR, height VARCHAR)
###Answer:
SELECT catalog_entry_name FROM catalog_contents ORDER BY heig... |
convert the question into postgresql query using the context values
### Question:
Find the name of the product that has the smallest capacity.
### Context:
CREATE TABLE catalog_contents (catalog_entry_name VARCHAR, capacity VARCHAR)
###Answer:
SELECT catalog_entry_name FROM catalog_contents ORDER BY capacity LIMIT 1 |
convert the question into postgresql query using the context values
### Question:
Find the names of all the products whose stock number starts with "2".
### Context:
CREATE TABLE catalog_contents (catalog_entry_name VARCHAR, product_stock_number VARCHAR)
###Answer:
SELECT catalog_entry_name FROM catalog_contents WHERE... |
convert the question into postgresql query using the context values
### Question:
Find the names of catalog entries with level number 8.
### Context:
CREATE TABLE Catalog_Contents_Additional_Attributes (catalog_entry_id VARCHAR, catalog_level_number VARCHAR); CREATE TABLE Catalog_Contents (catalog_entry_name VARCHAR, ... |
convert the question into postgresql query using the context values
### Question:
Find the names of the products with length smaller than 3 or height greater than 5.
### Context:
CREATE TABLE catalog_contents (catalog_entry_name VARCHAR, LENGTH VARCHAR, width VARCHAR)
###Answer:
SELECT catalog_entry_name FROM catalog_... |
convert the question into postgresql query using the context values
### Question:
Find the name and attribute ID of the attribute definitions with attribute value 0.
### Context:
CREATE TABLE Catalog_Contents_Additional_Attributes (attribute_id VARCHAR, attribute_value VARCHAR); CREATE TABLE Attribute_Definitions (att... |
convert the question into postgresql query using the context values
### Question:
Find the name and capacity of products with price greater than 700 (in USD).
### Context:
CREATE TABLE Catalog_Contents (catalog_entry_name VARCHAR, capacity VARCHAR, price_in_dollars INTEGER)
###Answer:
SELECT catalog_entry_name, capaci... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.