db_id
stringclasses
140 values
question
stringlengths
16
224
query
stringlengths
18
577
db_schema
stringclasses
140 values
question_toks
listlengths
4
44
cre_Theme_park
Find the address of the location named "UK Gallery".
SELECT Address FROM LOCATIONS WHERE Location_Name = "UK Gallery"
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "Find", "the", "address", "of", "the", "location", "named", "``", "UK", "Gallery", "''", "." ]
cre_Theme_park
What is the detail of the location UK Gallery?
SELECT Other_Details FROM LOCATIONS WHERE Location_Name = "UK Gallery"
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "What", "is", "the", "detail", "of", "the", "location", "UK", "Gallery", "?" ]
cre_Theme_park
Return the detail of the location named "UK Gallery".
SELECT Other_Details FROM LOCATIONS WHERE Location_Name = "UK Gallery"
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "Return", "the", "detail", "of", "the", "location", "named", "``", "UK", "Gallery", "''", "." ]
cre_Theme_park
Which location names contain the word "film"?
SELECT Location_Name FROM LOCATIONS WHERE Location_Name LIKE "%film%"
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "Which", "location", "names", "contain", "the", "word", "``", "film", "''", "?" ]
cre_Theme_park
Find all the locations whose names contain the word "film".
SELECT Location_Name FROM LOCATIONS WHERE Location_Name LIKE "%film%"
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "Find", "all", "the", "locations", "whose", "names", "contain", "the", "word", "``", "film", "''", "." ]
cre_Theme_park
How many distinct names are associated with all the photos?
SELECT count(DISTINCT Name) FROM PHOTOS
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "How", "many", "distinct", "names", "are", "associated", "with", "all", "the", "photos", "?" ]
cre_Theme_park
Count the number of distinct names associated with the photos.
SELECT count(DISTINCT Name) FROM PHOTOS
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "Count", "the", "number", "of", "distinct", "names", "associated", "with", "the", "photos", "." ]
cre_Theme_park
What are the distinct visit dates?
SELECT DISTINCT Visit_Date FROM VISITS
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "What", "are", "the", "distinct", "visit", "dates", "?" ]
cre_Theme_park
Find all the distinct visit dates.
SELECT DISTINCT Visit_Date FROM VISITS
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "Find", "all", "the", "distinct", "visit", "dates", "." ]
cre_Theme_park
What are the names of the tourist attractions that can be accessed by bus?
SELECT Name FROM TOURIST_ATTRACTIONS WHERE How_to_Get_There = "bus"
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "What", "are", "the", "names", "of", "the", "tourist", "attractions", "that", "can", "be", "accessed", "by", "bus", "?" ]
cre_Theme_park
Which tourist attractions can we get to by bus? Tell me the names of the attractions.
SELECT Name FROM TOURIST_ATTRACTIONS WHERE How_to_Get_There = "bus"
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "Which", "tourist", "attractions", "can", "we", "get", "to", "by", "bus", "?", "Tell", "me", "the", "names", "of", "the", "attractions", "." ]
cre_Theme_park
What are the names and opening hours of the tourist attractions that can be accessed by bus or walk?
SELECT Name , Opening_Hours FROM TOURIST_ATTRACTIONS WHERE How_to_Get_There = "bus" OR How_to_Get_There = "walk"
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "What", "are", "the", "names", "and", "opening", "hours", "of", "the", "tourist", "attractions", "that", "can", "be", "accessed", "by", "bus", "or", "walk", "?" ]
cre_Theme_park
Find the names and opening hours of the tourist attractions that we get to by bus or walk.
SELECT Name , Opening_Hours FROM TOURIST_ATTRACTIONS WHERE How_to_Get_There = "bus" OR How_to_Get_There = "walk"
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "Find", "the", "names", "and", "opening", "hours", "of", "the", "tourist", "attractions", "that", "we", "get", "to", "by", "bus", "or", "walk", "." ]
cre_Theme_park
What are the star rating descriptions of the hotels with price above 10000?
SELECT T2.star_rating_description FROM HOTELS AS T1 JOIN Ref_Hotel_Star_Ratings AS T2 ON T1.star_rating_code = T2.star_rating_code WHERE T1.price_range > 10000
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "What", "are", "the", "star", "rating", "descriptions", "of", "the", "hotels", "with", "price", "above", "10000", "?" ]
cre_Theme_park
Give me the star rating descriptions of the hotels that cost more than 10000.
SELECT T2.star_rating_description FROM HOTELS AS T1 JOIN Ref_Hotel_Star_Ratings AS T2 ON T1.star_rating_code = T2.star_rating_code WHERE T1.price_range > 10000
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "Give", "me", "the", "star", "rating", "descriptions", "of", "the", "hotels", "that", "cost", "more", "than", "10000", "." ]
cre_Theme_park
What are the details and opening hours of the museums?
SELECT T1.Museum_Details , T2.Opening_Hours FROM MUSEUMS AS T1 JOIN TOURIST_ATTRACTIONS AS T2 ON T1.Museum_ID = T2.Tourist_Attraction_ID
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "What", "are", "the", "details", "and", "opening", "hours", "of", "the", "museums", "?" ]
cre_Theme_park
Give me the detail and opening hour for each museum.
SELECT T1.Museum_Details , T2.Opening_Hours FROM MUSEUMS AS T1 JOIN TOURIST_ATTRACTIONS AS T2 ON T1.Museum_ID = T2.Tourist_Attraction_ID
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "Give", "me", "the", "detail", "and", "opening", "hour", "for", "each", "museum", "." ]
cre_Theme_park
What is the name of the tourist attraction that is associated with the photo "game1"?
SELECT T2.Name FROM PHOTOS AS T1 JOIN TOURIST_ATTRACTIONS AS T2 ON T1.Tourist_Attraction_ID = T2.Tourist_Attraction_ID WHERE T1.Name = "game1"
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "What", "is", "the", "name", "of", "the", "tourist", "attraction", "that", "is", "associated", "with", "the", "photo", "``", "game1", "''", "?" ]
cre_Theme_park
Which tourist attraction is associated with the photo "game1"? Return its name.
SELECT T2.Name FROM PHOTOS AS T1 JOIN TOURIST_ATTRACTIONS AS T2 ON T1.Tourist_Attraction_ID = T2.Tourist_Attraction_ID WHERE T1.Name = "game1"
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "Which", "tourist", "attraction", "is", "associated", "with", "the", "photo", "``", "game1", "''", "?", "Return", "its", "name", "." ]
cre_Theme_park
What are the names and descriptions of the photos taken at the tourist attraction "film festival"?
SELECT T1.Name , T1.Description FROM PHOTOS AS T1 JOIN TOURIST_ATTRACTIONS AS T2 ON T1.Tourist_Attraction_ID = T2.Tourist_Attraction_ID WHERE T2.Name = "film festival"
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "What", "are", "the", "names", "and", "descriptions", "of", "the", "photos", "taken", "at", "the", "tourist", "attraction", "``", "film", "festival", "''", "?" ]
cre_Theme_park
Find the names and descriptions of the photos taken at the tourist attraction called "film festival".
SELECT T1.Name , T1.Description FROM PHOTOS AS T1 JOIN TOURIST_ATTRACTIONS AS T2 ON T1.Tourist_Attraction_ID = T2.Tourist_Attraction_ID WHERE T2.Name = "film festival"
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "Find", "the", "names", "and", "descriptions", "of", "the", "photos", "taken", "at", "the", "tourist", "attraction", "called", "``", "film", "festival", "''", "." ]
cre_Theme_park
What are the details and ways to get to tourist attractions related to royal family?
SELECT T1.Royal_Family_Details , T2.How_to_Get_There FROM ROYAL_FAMILY AS T1 JOIN TOURIST_ATTRACTIONS AS T2 ON T1.Royal_Family_ID = T2.Tourist_Attraction_ID
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "What", "are", "the", "details", "and", "ways", "to", "get", "to", "tourist", "attractions", "related", "to", "royal", "family", "?" ]
cre_Theme_park
Which tourist attractions are related to royal family? Tell me their details and how we can get there.
SELECT T1.Royal_Family_Details , T2.How_to_Get_There FROM ROYAL_FAMILY AS T1 JOIN TOURIST_ATTRACTIONS AS T2 ON T1.Royal_Family_ID = T2.Tourist_Attraction_ID
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "Which", "tourist", "attractions", "are", "related", "to", "royal", "family", "?", "Tell", "me", "their", "details", "and", "how", "we", "can", "get", "there", "." ]
cre_Theme_park
What are the details of the shops that can be accessed by walk?
SELECT T1.Shop_Details FROM SHOPS AS T1 JOIN TOURIST_ATTRACTIONS AS T2 ON T1.Shop_ID = T2.Tourist_Attraction_ID WHERE T2.How_to_Get_There = "walk"
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "What", "are", "the", "details", "of", "the", "shops", "that", "can", "be", "accessed", "by", "walk", "?" ]
cre_Theme_park
Find the details of the shops that can be reached by walk.
SELECT T1.Shop_Details FROM SHOPS AS T1 JOIN TOURIST_ATTRACTIONS AS T2 ON T1.Shop_ID = T2.Tourist_Attraction_ID WHERE T2.How_to_Get_There = "walk"
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "Find", "the", "details", "of", "the", "shops", "that", "can", "be", "reached", "by", "walk", "." ]
cre_Theme_park
What is the name of the staff that is in charge of the attraction named "US museum"?
SELECT T1.Name FROM STAFF AS T1 JOIN TOURIST_ATTRACTIONS AS T2 ON T1.Tourist_Attraction_ID = T2.Tourist_Attraction_ID WHERE T2.Name = "US museum"
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "What", "is", "the", "name", "of", "the", "staff", "that", "is", "in", "charge", "of", "the", "attraction", "named", "``", "US", "museum", "''", "?" ]
cre_Theme_park
Tell me the name of the staff in charge of the attraction called "US museum".
SELECT T1.Name FROM STAFF AS T1 JOIN TOURIST_ATTRACTIONS AS T2 ON T1.Tourist_Attraction_ID = T2.Tourist_Attraction_ID WHERE T2.Name = "US museum"
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "Tell", "me", "the", "name", "of", "the", "staff", "in", "charge", "of", "the", "attraction", "called", "``", "US", "museum", "''", "." ]
cre_Theme_park
What are the details of the markets that can be accessed by walk or bus?
SELECT T1.Market_Details FROM Street_Markets AS T1 JOIN TOURIST_ATTRACTIONS AS T2 ON T1.Market_ID = T2.Tourist_Attraction_ID WHERE T2.How_to_Get_There = "walk" OR T2.How_to_Get_There = "bus"
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "What", "are", "the", "details", "of", "the", "markets", "that", "can", "be", "accessed", "by", "walk", "or", "bus", "?" ]
cre_Theme_park
Find the details of all the markets that are accessible by walk or bus.
SELECT T1.Market_Details FROM Street_Markets AS T1 JOIN TOURIST_ATTRACTIONS AS T2 ON T1.Market_ID = T2.Tourist_Attraction_ID WHERE T2.How_to_Get_There = "walk" OR T2.How_to_Get_There = "bus"
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "Find", "the", "details", "of", "all", "the", "markets", "that", "are", "accessible", "by", "walk", "or", "bus", "." ]
cre_Theme_park
What are the visit date and details of the visitor whose detail is 'Vincent'?
SELECT T2.Visit_Date , T2.Visit_Details FROM VISITORS AS T1 JOIN VISITS AS T2 ON T1.Tourist_ID = T2.Tourist_ID WHERE T1.Tourist_Details = "Vincent"
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "What", "are", "the", "visit", "date", "and", "details", "of", "the", "visitor", "whose", "detail", "is", "'Vincent", "'", "?" ]
cre_Theme_park
Find the visit date and details of the tourist whose detail is 'Vincent'
SELECT T2.Visit_Date , T2.Visit_Details FROM VISITORS AS T1 JOIN VISITS AS T2 ON T1.Tourist_ID = T2.Tourist_ID WHERE T1.Tourist_Details = "Vincent"
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "Find", "the", "visit", "date", "and", "details", "of", "the", "tourist", "whose", "detail", "is", "'Vincent", "'" ]
cre_Theme_park
Which tourist attractions does the visitor with detail 'Vincent' visit?
SELECT T1.Name FROM Tourist_Attractions AS T1 JOIN VISITS AS T2 ON T1.Tourist_Attraction_ID = T2.Tourist_Attraction_ID JOIN VISITORS AS T3 ON T2.Tourist_ID = T3.Tourist_ID WHERE T3.Tourist_Details = "Vincent"
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "Which", "tourist", "attractions", "does", "the", "visitor", "with", "detail", "'Vincent", "'", "visit", "?" ]
cre_Theme_park
Show the tourist attractions visited by the tourist whose detail is 'Vincent'.
SELECT T1.Name FROM Tourist_Attractions AS T1 JOIN VISITS AS T2 ON T1.Tourist_Attraction_ID = T2.Tourist_Attraction_ID JOIN VISITORS AS T3 ON T2.Tourist_ID = T3.Tourist_ID WHERE T3.Tourist_Details = "Vincent"
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "Show", "the", "tourist", "attractions", "visited", "by", "the", "tourist", "whose", "detail", "is", "'Vincent", "'", "." ]
cre_Theme_park
What are the names of the tourist attractions and the dates when the tourists named Vincent or Vivian visited there?
SELECT T1.Name , T3.Visit_Date FROM Tourist_Attractions AS T1 JOIN VISITORS AS T2 JOIN VISITS AS T3 ON T1.Tourist_Attraction_ID = T3.Tourist_Attraction_ID AND T2.Tourist_ID = T3.Tourist_ID WHERE T2.Tourist_Details = "Vincent" OR T2.Tourist_Details = "Vivian"
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "What", "are", "the", "names", "of", "the", "tourist", "attractions", "and", "the", "dates", "when", "the", "tourists", "named", "Vincent", "or", "Vivian", "visited", "there", "?" ]
cre_Theme_park
For each tourist attraction, return its name and the date when the tourists named Vincent or Vivian visited there.
SELECT T1.Name , T3.Visit_Date FROM Tourist_Attractions AS T1 JOIN VISITORS AS T2 JOIN VISITS AS T3 ON T1.Tourist_Attraction_ID = T3.Tourist_Attraction_ID AND T2.Tourist_ID = T3.Tourist_ID WHERE T2.Tourist_Details = "Vincent" OR T2.Tourist_Details = "Vivian"
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "For", "each", "tourist", "attraction", ",", "return", "its", "name", "and", "the", "date", "when", "the", "tourists", "named", "Vincent", "or", "Vivian", "visited", "there", "." ]
cre_Theme_park
Show the average price of hotels for each star rating code.
SELECT star_rating_code , avg(price_range) FROM HOTELS GROUP BY star_rating_code
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "Show", "the", "average", "price", "of", "hotels", "for", "each", "star", "rating", "code", "." ]
cre_Theme_park
What is the average price range of hotels for each each star rating code?
SELECT star_rating_code , avg(price_range) FROM HOTELS GROUP BY star_rating_code
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "What", "is", "the", "average", "price", "range", "of", "hotels", "for", "each", "each", "star", "rating", "code", "?" ]
cre_Theme_park
Show the average price of hotels for different pet policy.
SELECT pets_allowed_yn , avg(price_range) FROM HOTELS GROUP BY pets_allowed_yn
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "Show", "the", "average", "price", "of", "hotels", "for", "different", "pet", "policy", "." ]
cre_Theme_park
What are the average prices of hotels grouped by their pet policy.
SELECT pets_allowed_yn , avg(price_range) FROM HOTELS GROUP BY pets_allowed_yn
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "What", "are", "the", "average", "prices", "of", "hotels", "grouped", "by", "their", "pet", "policy", "." ]
cre_Theme_park
Show the id and star rating of each hotel, ordered by its price from low to high.
SELECT hotel_id , star_rating_code FROM HOTELS ORDER BY price_range ASC
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "Show", "the", "id", "and", "star", "rating", "of", "each", "hotel", ",", "ordered", "by", "its", "price", "from", "low", "to", "high", "." ]
cre_Theme_park
Find the id and star rating of each hotel and sort them in increasing order of price.
SELECT hotel_id , star_rating_code FROM HOTELS ORDER BY price_range ASC
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "Find", "the", "id", "and", "star", "rating", "of", "each", "hotel", "and", "sort", "them", "in", "increasing", "order", "of", "price", "." ]
cre_Theme_park
Show the details of the top 3 most expensive hotels.
SELECT other_hotel_details FROM HOTELS ORDER BY price_range DESC LIMIT 3
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "Show", "the", "details", "of", "the", "top", "3", "most", "expensive", "hotels", "." ]
cre_Theme_park
What are the details of the three most expensive hotels?
SELECT other_hotel_details FROM HOTELS ORDER BY price_range DESC LIMIT 3
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "What", "are", "the", "details", "of", "the", "three", "most", "expensive", "hotels", "?" ]
cre_Theme_park
Show the details and star ratings of the 3 least expensive hotels.
SELECT other_hotel_details , star_rating_code FROM HOTELS ORDER BY price_range ASC LIMIT 3
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "Show", "the", "details", "and", "star", "ratings", "of", "the", "3", "least", "expensive", "hotels", "." ]
cre_Theme_park
What are the details and star ratings of the three hotels with the lowest price ranges?
SELECT other_hotel_details , star_rating_code FROM HOTELS ORDER BY price_range ASC LIMIT 3
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "What", "are", "the", "details", "and", "star", "ratings", "of", "the", "three", "hotels", "with", "the", "lowest", "price", "ranges", "?" ]
cre_Theme_park
Show the transportation method most people choose to get to tourist attractions.
SELECT How_to_Get_There FROM Tourist_Attractions GROUP BY How_to_Get_There ORDER BY COUNT(*) DESC LIMIT 1
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "Show", "the", "transportation", "method", "most", "people", "choose", "to", "get", "to", "tourist", "attractions", "." ]
cre_Theme_park
Which transportation method is used the most often to get to tourist attractions?
SELECT How_to_Get_There FROM Tourist_Attractions GROUP BY How_to_Get_There ORDER BY COUNT(*) DESC LIMIT 1
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "Which", "transportation", "method", "is", "used", "the", "most", "often", "to", "get", "to", "tourist", "attractions", "?" ]
cre_Theme_park
Show the description and code of the attraction type most tourist attractions belong to.
SELECT T1.Attraction_Type_Description , T2.Attraction_Type_Code FROM Ref_Attraction_Types AS T1 JOIN Tourist_Attractions AS T2 ON T1.Attraction_Type_Code = T2.Attraction_Type_Code GROUP BY T2.Attraction_Type_Code ORDER BY COUNT(*) DESC LIMIT 1
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "Show", "the", "description", "and", "code", "of", "the", "attraction", "type", "most", "tourist", "attractions", "belong", "to", "." ]
cre_Theme_park
Which attraction type does the most tourist attractions belong to? Tell me its attraction type description and code.
SELECT T1.Attraction_Type_Description , T2.Attraction_Type_Code FROM Ref_Attraction_Types AS T1 JOIN Tourist_Attractions AS T2 ON T1.Attraction_Type_Code = T2.Attraction_Type_Code GROUP BY T2.Attraction_Type_Code ORDER BY COUNT(*) DESC LIMIT 1
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "Which", "attraction", "type", "does", "the", "most", "tourist", "attractions", "belong", "to", "?", "Tell", "me", "its", "attraction", "type", "description", "and", "code", "." ]
cre_Theme_park
Show different ways to get to attractions and the number of attractions that can be accessed in the corresponding way.
SELECT How_to_Get_There , COUNT(*) FROM Tourist_Attractions GROUP BY How_to_Get_There
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "Show", "different", "ways", "to", "get", "to", "attractions", "and", "the", "number", "of", "attractions", "that", "can", "be", "accessed", "in", "the", "corresponding", "way", "." ]
cre_Theme_park
List all the possible ways to get to attractions, together with the number of attractions accessible by these methods.
SELECT How_to_Get_There , COUNT(*) FROM Tourist_Attractions GROUP BY How_to_Get_There
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "List", "all", "the", "possible", "ways", "to", "get", "to", "attractions", ",", "together", "with", "the", "number", "of", "attractions", "accessible", "by", "these", "methods", "." ]
cre_Theme_park
Show different tourist attractions' names, ids, and the corresponding number of visits.
SELECT T1.Name , T2.Tourist_Attraction_ID , COUNT(*) FROM Tourist_Attractions AS T1 JOIN VISITS AS T2 ON T1.Tourist_Attraction_ID = T2.Tourist_Attraction_ID GROUP BY T2.Tourist_Attraction_ID
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "Show", "different", "tourist", "attractions", "'", "names", ",", "ids", ",", "and", "the", "corresponding", "number", "of", "visits", "." ]
cre_Theme_park
What are the name, id and the corresponding number of visits for each tourist attraction?
SELECT T1.Name , T2.Tourist_Attraction_ID , COUNT(*) FROM Tourist_Attractions AS T1 JOIN VISITS AS T2 ON T1.Tourist_Attraction_ID = T2.Tourist_Attraction_ID GROUP BY T2.Tourist_Attraction_ID
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "What", "are", "the", "name", ",", "id", "and", "the", "corresponding", "number", "of", "visits", "for", "each", "tourist", "attraction", "?" ]
cre_Theme_park
Show the names and ids of tourist attractions that are visited at least two times.
SELECT T1.Name , T2.Tourist_Attraction_ID FROM Tourist_Attractions AS T1 JOIN VISITS AS T2 ON T1.Tourist_Attraction_ID = T2.Tourist_Attraction_ID GROUP BY T2.Tourist_Attraction_ID HAVING count(*) >= 2
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "Show", "the", "names", "and", "ids", "of", "tourist", "attractions", "that", "are", "visited", "at", "least", "two", "times", "." ]
cre_Theme_park
Which tourist attractions are visited at least twice? Give me their names and ids.
SELECT T1.Name , T2.Tourist_Attraction_ID FROM Tourist_Attractions AS T1 JOIN VISITS AS T2 ON T1.Tourist_Attraction_ID = T2.Tourist_Attraction_ID GROUP BY T2.Tourist_Attraction_ID HAVING count(*) >= 2
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "Which", "tourist", "attractions", "are", "visited", "at", "least", "twice", "?", "Give", "me", "their", "names", "and", "ids", "." ]
cre_Theme_park
Show the names and ids of tourist attractions that are visited at most once.
SELECT T1.Name , T1.Tourist_Attraction_ID FROM Tourist_Attractions AS T1 JOIN VISITS AS T2 ON T1.Tourist_Attraction_ID = T2.Tourist_Attraction_ID GROUP BY T2.Tourist_Attraction_ID HAVING count(*) <= 1
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "Show", "the", "names", "and", "ids", "of", "tourist", "attractions", "that", "are", "visited", "at", "most", "once", "." ]
cre_Theme_park
What are the names and ids of the tourist attractions that are visited at most once?
SELECT T1.Name , T1.Tourist_Attraction_ID FROM Tourist_Attractions AS T1 JOIN VISITS AS T2 ON T1.Tourist_Attraction_ID = T2.Tourist_Attraction_ID GROUP BY T2.Tourist_Attraction_ID HAVING count(*) <= 1
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "What", "are", "the", "names", "and", "ids", "of", "the", "tourist", "attractions", "that", "are", "visited", "at", "most", "once", "?" ]
cre_Theme_park
What are the names of tourist attractions that can be reached by walk or is at address 660 Shea Crescent?
SELECT T2.Name FROM Locations AS T1 JOIN Tourist_Attractions AS T2 ON T1.Location_ID = T2.Location_ID WHERE T1.Address = "660 Shea Crescent" OR T2.How_to_Get_There = "walk"
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "What", "are", "the", "names", "of", "tourist", "attractions", "that", "can", "be", "reached", "by", "walk", "or", "is", "at", "address", "660", "Shea", "Crescent", "?" ]
cre_Theme_park
Find the names of the tourist attractions that is either accessible by walk or at address 660 Shea Crescent.
SELECT T2.Name FROM Locations AS T1 JOIN Tourist_Attractions AS T2 ON T1.Location_ID = T2.Location_ID WHERE T1.Address = "660 Shea Crescent" OR T2.How_to_Get_There = "walk"
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "Find", "the", "names", "of", "the", "tourist", "attractions", "that", "is", "either", "accessible", "by", "walk", "or", "at", "address", "660", "Shea", "Crescent", "." ]
cre_Theme_park
What are the names of the tourist attractions that have parking or shopping as their feature details?
SELECT T1.Name FROM Tourist_Attractions AS T1 JOIN Tourist_Attraction_Features AS T2 ON T1.tourist_attraction_id = T2.tourist_attraction_id JOIN Features AS T3 ON T2.Feature_ID = T3.Feature_ID WHERE T3.feature_Details = 'park' UNION SELECT T1.Name FROM Tourist_Attractions AS T1 JOIN Tourist_Attraction_Features AS...
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "What", "are", "the", "names", "of", "the", "tourist", "attractions", "that", "have", "parking", "or", "shopping", "as", "their", "feature", "details", "?" ]
cre_Theme_park
Find the tourist attractions that have parking or shopping as their feature details. What are the names of the attractions?
SELECT T1.Name FROM Tourist_Attractions AS T1 JOIN Tourist_Attraction_Features AS T2 ON T1.tourist_attraction_id = T2.tourist_attraction_id JOIN Features AS T3 ON T2.Feature_ID = T3.Feature_ID WHERE T3.feature_Details = 'park' UNION SELECT T1.Name FROM Tourist_Attractions AS T1 JOIN Tourist_Attraction_Features AS...
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "Find", "the", "tourist", "attractions", "that", "have", "parking", "or", "shopping", "as", "their", "feature", "details", ".", "What", "are", "the", "names", "of", "the", "attractions", "?" ]
cre_Theme_park
What are the names of tourist attractions that can be reached by bus or is at address 254 Ottilie Junction?
SELECT T2.Name FROM Locations AS T1 JOIN Tourist_Attractions AS T2 ON T1.Location_ID = T2.Location_ID WHERE T1.Address = "254 Ottilie Junction" OR T2.How_to_Get_There = "bus"
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "What", "are", "the", "names", "of", "tourist", "attractions", "that", "can", "be", "reached", "by", "bus", "or", "is", "at", "address", "254", "Ottilie", "Junction", "?" ]
cre_Theme_park
Find the names of the tourist attractions that is either accessible by bus or at address 254 Ottilie Junction.
SELECT T2.Name FROM Locations AS T1 JOIN Tourist_Attractions AS T2 ON T1.Location_ID = T2.Location_ID WHERE T1.Address = "254 Ottilie Junction" OR T2.How_to_Get_There = "bus"
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "Find", "the", "names", "of", "the", "tourist", "attractions", "that", "is", "either", "accessible", "by", "bus", "or", "at", "address", "254", "Ottilie", "Junction", "." ]
cre_Theme_park
What are the names of the tourist attractions Vincent and Marcelle visit?
SELECT T1.Name FROM Tourist_Attractions AS T1 JOIN VISITORS AS T2 JOIN VISITS AS T3 ON T1.Tourist_Attraction_ID = T3.Tourist_Attraction_ID AND T2.Tourist_ID = T3.Tourist_ID WHERE T2.Tourist_Details = "Vincent" INTERSECT SELECT T1.Name FROM Tourist_Attractions AS T1 JOIN VISITORS AS T2 JOIN VISITS AS T3 ON T1.Tour...
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "What", "are", "the", "names", "of", "the", "tourist", "attractions", "Vincent", "and", "Marcelle", "visit", "?" ]
cre_Theme_park
Which tourist attractions do the tourists Vincent and Marcelle visit? Tell me the names of the attractions.
SELECT T1.Name FROM Tourist_Attractions AS T1 JOIN VISITORS AS T2 JOIN VISITS AS T3 ON T1.Tourist_Attraction_ID = T3.Tourist_Attraction_ID AND T2.Tourist_ID = T3.Tourist_ID WHERE T2.Tourist_Details = "Vincent" INTERSECT SELECT T1.Name FROM Tourist_Attractions AS T1 JOIN VISITORS AS T2 JOIN VISITS AS T3 ON T1.Tour...
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "Which", "tourist", "attractions", "do", "the", "tourists", "Vincent", "and", "Marcelle", "visit", "?", "Tell", "me", "the", "names", "of", "the", "attractions", "." ]
cre_Theme_park
What are the names of tourist attraction that Alison visited but Rosalind did not visit?
SELECT T1.Name FROM Tourist_Attractions AS T1 JOIN VISITORS AS T2 JOIN VISITS AS T3 ON T1.Tourist_Attraction_ID = T3.Tourist_Attraction_ID AND T2.Tourist_ID = T3.Tourist_ID WHERE T2.Tourist_Details = "Alison" EXCEPT SELECT T1.Name FROM Tourist_Attractions AS T1 JOIN VISITORS AS T2 JOIN VISITS AS T3 ON T1.Tourist_...
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "What", "are", "the", "names", "of", "tourist", "attraction", "that", "Alison", "visited", "but", "Rosalind", "did", "not", "visit", "?" ]
cre_Theme_park
Find the the names of the tourist attractions that the tourist named Alison visited but Rosalind did not visit.
SELECT T1.Name FROM Tourist_Attractions AS T1 JOIN VISITORS AS T2 JOIN VISITS AS T3 ON T1.Tourist_Attraction_ID = T3.Tourist_Attraction_ID AND T2.Tourist_ID = T3.Tourist_ID WHERE T2.Tourist_Details = "Alison" EXCEPT SELECT T1.Name FROM Tourist_Attractions AS T1 JOIN VISITORS AS T2 JOIN VISITS AS T3 ON T1.Tourist_...
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "Find", "the", "the", "names", "of", "the", "tourist", "attractions", "that", "the", "tourist", "named", "Alison", "visited", "but", "Rosalind", "did", "not", "visit", "." ]
cre_Theme_park
How many tourists did not make any visit?
SELECT count(*) FROM Visitors WHERE Tourist_ID NOT IN ( SELECT Tourist_ID FROM Visits )
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "How", "many", "tourists", "did", "not", "make", "any", "visit", "?" ]
cre_Theme_park
Count the number of tourists who did not visit any place.
SELECT count(*) FROM Visitors WHERE Tourist_ID NOT IN ( SELECT Tourist_ID FROM Visits )
Ref_Hotel_Star_Ratings: star_rating_code (text), star_rating_description (text) | Locations: Location_ID (number), Location_Name (text), Address (text), Other_Details (text) | Ref_Attraction_Types: Attraction_Type_Code (text), Attraction_Type_Description (text) | Visitors: Tourist_ID (number), Tourist_Details (text) | ...
[ "Count", "the", "number", "of", "tourists", "who", "did", "not", "visit", "any", "place", "." ]
game_1
How many video games exist?
SELECT count(*) FROM Video_games
Student: StuID (number), LName (text), Fname (text), Age (number), Sex (text), Major (number), Advisor (number), city_code (text) | Video_Games: GameID (number), GName (text), GType (text) | Plays_Games: StuID (number), GameID (number), Hours_Played (number) | SportsInfo: StuID (number), SportName (text), HoursPerWeek ...
[ "How", "many", "video", "games", "exist", "?" ]
game_1
How many video games do you have?
SELECT count(*) FROM Video_games
Student: StuID (number), LName (text), Fname (text), Age (number), Sex (text), Major (number), Advisor (number), city_code (text) | Video_Games: GameID (number), GName (text), GType (text) | Plays_Games: StuID (number), GameID (number), Hours_Played (number) | SportsInfo: StuID (number), SportName (text), HoursPerWeek ...
[ "How", "many", "video", "games", "do", "you", "have", "?" ]
game_1
How many video game types exist?
SELECT count(DISTINCT gtype) FROM Video_games
Student: StuID (number), LName (text), Fname (text), Age (number), Sex (text), Major (number), Advisor (number), city_code (text) | Video_Games: GameID (number), GName (text), GType (text) | Plays_Games: StuID (number), GameID (number), Hours_Played (number) | SportsInfo: StuID (number), SportName (text), HoursPerWeek ...
[ "How", "many", "video", "game", "types", "exist", "?" ]
game_1
What is the count of different game types?
SELECT count(DISTINCT gtype) FROM Video_games
Student: StuID (number), LName (text), Fname (text), Age (number), Sex (text), Major (number), Advisor (number), city_code (text) | Video_Games: GameID (number), GName (text), GType (text) | Plays_Games: StuID (number), GameID (number), Hours_Played (number) | SportsInfo: StuID (number), SportName (text), HoursPerWeek ...
[ "What", "is", "the", "count", "of", "different", "game", "types", "?" ]
game_1
Show all video game types.
SELECT DISTINCT gtype FROM Video_games
Student: StuID (number), LName (text), Fname (text), Age (number), Sex (text), Major (number), Advisor (number), city_code (text) | Video_Games: GameID (number), GName (text), GType (text) | Plays_Games: StuID (number), GameID (number), Hours_Played (number) | SportsInfo: StuID (number), SportName (text), HoursPerWeek ...
[ "Show", "all", "video", "game", "types", "." ]
game_1
What are the different types of video games?
SELECT DISTINCT gtype FROM Video_games
Student: StuID (number), LName (text), Fname (text), Age (number), Sex (text), Major (number), Advisor (number), city_code (text) | Video_Games: GameID (number), GName (text), GType (text) | Plays_Games: StuID (number), GameID (number), Hours_Played (number) | SportsInfo: StuID (number), SportName (text), HoursPerWeek ...
[ "What", "are", "the", "different", "types", "of", "video", "games", "?" ]
game_1
Show all video games and their types in the order of their names.
SELECT gname , gtype FROM Video_games ORDER BY gname
Student: StuID (number), LName (text), Fname (text), Age (number), Sex (text), Major (number), Advisor (number), city_code (text) | Video_Games: GameID (number), GName (text), GType (text) | Plays_Games: StuID (number), GameID (number), Hours_Played (number) | SportsInfo: StuID (number), SportName (text), HoursPerWeek ...
[ "Show", "all", "video", "games", "and", "their", "types", "in", "the", "order", "of", "their", "names", "." ]
game_1
What are the names of all the video games and their types in alphabetical order?
SELECT gname , gtype FROM Video_games ORDER BY gname
Student: StuID (number), LName (text), Fname (text), Age (number), Sex (text), Major (number), Advisor (number), city_code (text) | Video_Games: GameID (number), GName (text), GType (text) | Plays_Games: StuID (number), GameID (number), Hours_Played (number) | SportsInfo: StuID (number), SportName (text), HoursPerWeek ...
[ "What", "are", "the", "names", "of", "all", "the", "video", "games", "and", "their", "types", "in", "alphabetical", "order", "?" ]
game_1
Show all video games with type Collectible card game.
SELECT gname FROM Video_games WHERE gtype = "Collectible card game"
Student: StuID (number), LName (text), Fname (text), Age (number), Sex (text), Major (number), Advisor (number), city_code (text) | Video_Games: GameID (number), GName (text), GType (text) | Plays_Games: StuID (number), GameID (number), Hours_Played (number) | SportsInfo: StuID (number), SportName (text), HoursPerWeek ...
[ "Show", "all", "video", "games", "with", "type", "Collectible", "card", "game", "." ]
game_1
What are the names of all video games that are collectible cards?
SELECT gname FROM Video_games WHERE gtype = "Collectible card game"
Student: StuID (number), LName (text), Fname (text), Age (number), Sex (text), Major (number), Advisor (number), city_code (text) | Video_Games: GameID (number), GName (text), GType (text) | Plays_Games: StuID (number), GameID (number), Hours_Played (number) | SportsInfo: StuID (number), SportName (text), HoursPerWeek ...
[ "What", "are", "the", "names", "of", "all", "video", "games", "that", "are", "collectible", "cards", "?" ]
game_1
What is the type of video game Call of Destiny.
SELECT gtype FROM Video_games WHERE gname = "Call of Destiny"
Student: StuID (number), LName (text), Fname (text), Age (number), Sex (text), Major (number), Advisor (number), city_code (text) | Video_Games: GameID (number), GName (text), GType (text) | Plays_Games: StuID (number), GameID (number), Hours_Played (number) | SportsInfo: StuID (number), SportName (text), HoursPerWeek ...
[ "What", "is", "the", "type", "of", "video", "game", "Call", "of", "Destiny", "." ]
game_1
What type of game is Call of Destiny?
SELECT gtype FROM Video_games WHERE gname = "Call of Destiny"
Student: StuID (number), LName (text), Fname (text), Age (number), Sex (text), Major (number), Advisor (number), city_code (text) | Video_Games: GameID (number), GName (text), GType (text) | Plays_Games: StuID (number), GameID (number), Hours_Played (number) | SportsInfo: StuID (number), SportName (text), HoursPerWeek ...
[ "What", "type", "of", "game", "is", "Call", "of", "Destiny", "?" ]
game_1
How many video games have type Massively multiplayer online game?
SELECT count(*) FROM Video_games WHERE gtype = "Massively multiplayer online game"
Student: StuID (number), LName (text), Fname (text), Age (number), Sex (text), Major (number), Advisor (number), city_code (text) | Video_Games: GameID (number), GName (text), GType (text) | Plays_Games: StuID (number), GameID (number), Hours_Played (number) | SportsInfo: StuID (number), SportName (text), HoursPerWeek ...
[ "How", "many", "video", "games", "have", "type", "Massively", "multiplayer", "online", "game", "?" ]
game_1
Count the number of video games with Massively multiplayer online game type .
SELECT count(*) FROM Video_games WHERE gtype = "Massively multiplayer online game"
Student: StuID (number), LName (text), Fname (text), Age (number), Sex (text), Major (number), Advisor (number), city_code (text) | Video_Games: GameID (number), GName (text), GType (text) | Plays_Games: StuID (number), GameID (number), Hours_Played (number) | SportsInfo: StuID (number), SportName (text), HoursPerWeek ...
[ "Count", "the", "number", "of", "video", "games", "with", "Massively", "multiplayer", "online", "game", "type", "." ]
game_1
Show all video game types and the number of video games in each type.
SELECT gtype , count(*) FROM Video_games GROUP BY gtype
Student: StuID (number), LName (text), Fname (text), Age (number), Sex (text), Major (number), Advisor (number), city_code (text) | Video_Games: GameID (number), GName (text), GType (text) | Plays_Games: StuID (number), GameID (number), Hours_Played (number) | SportsInfo: StuID (number), SportName (text), HoursPerWeek ...
[ "Show", "all", "video", "game", "types", "and", "the", "number", "of", "video", "games", "in", "each", "type", "." ]
game_1
What are the types of video games and how many are in each type?
SELECT gtype , count(*) FROM Video_games GROUP BY gtype
Student: StuID (number), LName (text), Fname (text), Age (number), Sex (text), Major (number), Advisor (number), city_code (text) | Video_Games: GameID (number), GName (text), GType (text) | Plays_Games: StuID (number), GameID (number), Hours_Played (number) | SportsInfo: StuID (number), SportName (text), HoursPerWeek ...
[ "What", "are", "the", "types", "of", "video", "games", "and", "how", "many", "are", "in", "each", "type", "?" ]
game_1
Which game type has most number of games?
SELECT gtype FROM Video_games GROUP BY gtype ORDER BY count(*) DESC LIMIT 1
Student: StuID (number), LName (text), Fname (text), Age (number), Sex (text), Major (number), Advisor (number), city_code (text) | Video_Games: GameID (number), GName (text), GType (text) | Plays_Games: StuID (number), GameID (number), Hours_Played (number) | SportsInfo: StuID (number), SportName (text), HoursPerWeek ...
[ "Which", "game", "type", "has", "most", "number", "of", "games", "?" ]
game_1
What type has the most games?
SELECT gtype FROM Video_games GROUP BY gtype ORDER BY count(*) DESC LIMIT 1
Student: StuID (number), LName (text), Fname (text), Age (number), Sex (text), Major (number), Advisor (number), city_code (text) | Video_Games: GameID (number), GName (text), GType (text) | Plays_Games: StuID (number), GameID (number), Hours_Played (number) | SportsInfo: StuID (number), SportName (text), HoursPerWeek ...
[ "What", "type", "has", "the", "most", "games", "?" ]
game_1
Which game type has least number of games?
SELECT gtype FROM Video_games GROUP BY gtype ORDER BY count(*) LIMIT 1
Student: StuID (number), LName (text), Fname (text), Age (number), Sex (text), Major (number), Advisor (number), city_code (text) | Video_Games: GameID (number), GName (text), GType (text) | Plays_Games: StuID (number), GameID (number), Hours_Played (number) | SportsInfo: StuID (number), SportName (text), HoursPerWeek ...
[ "Which", "game", "type", "has", "least", "number", "of", "games", "?" ]
game_1
What is the type with the fewest games?
SELECT gtype FROM Video_games GROUP BY gtype ORDER BY count(*) LIMIT 1
Student: StuID (number), LName (text), Fname (text), Age (number), Sex (text), Major (number), Advisor (number), city_code (text) | Video_Games: GameID (number), GName (text), GType (text) | Plays_Games: StuID (number), GameID (number), Hours_Played (number) | SportsInfo: StuID (number), SportName (text), HoursPerWeek ...
[ "What", "is", "the", "type", "with", "the", "fewest", "games", "?" ]
game_1
Show ids for all students who live in CHI.
SELECT StuID FROM Student WHERE city_code = "CHI"
Student: StuID (number), LName (text), Fname (text), Age (number), Sex (text), Major (number), Advisor (number), city_code (text) | Video_Games: GameID (number), GName (text), GType (text) | Plays_Games: StuID (number), GameID (number), Hours_Played (number) | SportsInfo: StuID (number), SportName (text), HoursPerWeek ...
[ "Show", "ids", "for", "all", "students", "who", "live", "in", "CHI", "." ]
game_1
What are the ids of all students who live in CHI?
SELECT StuID FROM Student WHERE city_code = "CHI"
Student: StuID (number), LName (text), Fname (text), Age (number), Sex (text), Major (number), Advisor (number), city_code (text) | Video_Games: GameID (number), GName (text), GType (text) | Plays_Games: StuID (number), GameID (number), Hours_Played (number) | SportsInfo: StuID (number), SportName (text), HoursPerWeek ...
[ "What", "are", "the", "ids", "of", "all", "students", "who", "live", "in", "CHI", "?" ]
game_1
Show ids for all students who have advisor 1121.
SELECT StuID FROM Student WHERE Advisor = 1121
Student: StuID (number), LName (text), Fname (text), Age (number), Sex (text), Major (number), Advisor (number), city_code (text) | Video_Games: GameID (number), GName (text), GType (text) | Plays_Games: StuID (number), GameID (number), Hours_Played (number) | SportsInfo: StuID (number), SportName (text), HoursPerWeek ...
[ "Show", "ids", "for", "all", "students", "who", "have", "advisor", "1121", "." ]
game_1
What are the ids of all students who have advisor number 1121?
SELECT StuID FROM Student WHERE Advisor = 1121
Student: StuID (number), LName (text), Fname (text), Age (number), Sex (text), Major (number), Advisor (number), city_code (text) | Video_Games: GameID (number), GName (text), GType (text) | Plays_Games: StuID (number), GameID (number), Hours_Played (number) | SportsInfo: StuID (number), SportName (text), HoursPerWeek ...
[ "What", "are", "the", "ids", "of", "all", "students", "who", "have", "advisor", "number", "1121", "?" ]
game_1
Show first name for all students with major 600.
SELECT Fname FROM Student WHERE Major = 600
Student: StuID (number), LName (text), Fname (text), Age (number), Sex (text), Major (number), Advisor (number), city_code (text) | Video_Games: GameID (number), GName (text), GType (text) | Plays_Games: StuID (number), GameID (number), Hours_Played (number) | SportsInfo: StuID (number), SportName (text), HoursPerWeek ...
[ "Show", "first", "name", "for", "all", "students", "with", "major", "600", "." ]
game_1
What are the first names for all students who are from the major numbered 600?
SELECT Fname FROM Student WHERE Major = 600
Student: StuID (number), LName (text), Fname (text), Age (number), Sex (text), Major (number), Advisor (number), city_code (text) | Video_Games: GameID (number), GName (text), GType (text) | Plays_Games: StuID (number), GameID (number), Hours_Played (number) | SportsInfo: StuID (number), SportName (text), HoursPerWeek ...
[ "What", "are", "the", "first", "names", "for", "all", "students", "who", "are", "from", "the", "major", "numbered", "600", "?" ]
game_1
Show the average, minimum, and maximum age for different majors.
SELECT major , avg(age) , min(age) , max(age) FROM Student GROUP BY major
Student: StuID (number), LName (text), Fname (text), Age (number), Sex (text), Major (number), Advisor (number), city_code (text) | Video_Games: GameID (number), GName (text), GType (text) | Plays_Games: StuID (number), GameID (number), Hours_Played (number) | SportsInfo: StuID (number), SportName (text), HoursPerWeek ...
[ "Show", "the", "average", ",", "minimum", ",", "and", "maximum", "age", "for", "different", "majors", "." ]
game_1
What are the average, minimum, and max ages for each of the different majors?
SELECT major , avg(age) , min(age) , max(age) FROM Student GROUP BY major
Student: StuID (number), LName (text), Fname (text), Age (number), Sex (text), Major (number), Advisor (number), city_code (text) | Video_Games: GameID (number), GName (text), GType (text) | Plays_Games: StuID (number), GameID (number), Hours_Played (number) | SportsInfo: StuID (number), SportName (text), HoursPerWeek ...
[ "What", "are", "the", "average", ",", "minimum", ",", "and", "max", "ages", "for", "each", "of", "the", "different", "majors", "?" ]
game_1
Show all advisors who have at least two students.
SELECT advisor FROM Student GROUP BY advisor HAVING count(*) >= 2
Student: StuID (number), LName (text), Fname (text), Age (number), Sex (text), Major (number), Advisor (number), city_code (text) | Video_Games: GameID (number), GName (text), GType (text) | Plays_Games: StuID (number), GameID (number), Hours_Played (number) | SportsInfo: StuID (number), SportName (text), HoursPerWeek ...
[ "Show", "all", "advisors", "who", "have", "at", "least", "two", "students", "." ]
game_1
What are the advisors
SELECT advisor FROM Student GROUP BY advisor HAVING count(*) >= 2
Student: StuID (number), LName (text), Fname (text), Age (number), Sex (text), Major (number), Advisor (number), city_code (text) | Video_Games: GameID (number), GName (text), GType (text) | Plays_Games: StuID (number), GameID (number), Hours_Played (number) | SportsInfo: StuID (number), SportName (text), HoursPerWeek ...
[ "What", "are", "the", "advisors" ]
game_1
How many sports do we have?
SELECT count(DISTINCT sportname) FROM Sportsinfo
Student: StuID (number), LName (text), Fname (text), Age (number), Sex (text), Major (number), Advisor (number), city_code (text) | Video_Games: GameID (number), GName (text), GType (text) | Plays_Games: StuID (number), GameID (number), Hours_Played (number) | SportsInfo: StuID (number), SportName (text), HoursPerWeek ...
[ "How", "many", "sports", "do", "we", "have", "?" ]