Unnamed: 0
int64 0
78.6k
| answer
stringlengths 18
557
| question
stringlengths 12
244
| context
stringlengths 27
489
| translated_answer
stringlengths 12
992
|
---|---|---|---|---|
100 | SELECT city FROM station GROUP BY city ORDER BY MAX(lat) DESC | List all the cities in a decreasing order of each city's stations' highest latitude. | CREATE TABLE station (city VARCHAR, lat INTEGER) | Liste todas as cidades em uma ordem decrescente da latitude mais alta de cada cidade. |
101 | SELECT date, cloud_cover FROM weather ORDER BY cloud_cover DESC LIMIT 5 | What are the dates that had the top 5 cloud cover rates? Also tell me the cloud cover rate. | CREATE TABLE weather (date VARCHAR, cloud_cover VARCHAR) | Quais são as datas que tinham as 5 principais taxas de cobertura de nuvem? Também me diga a taxa de cobertura de nuvem. |
102 | SELECT id, duration FROM trip ORDER BY duration DESC LIMIT 3 | What are the ids and durations of the trips with the top 3 durations? | CREATE TABLE trip (id VARCHAR, duration VARCHAR) | Quais são as IDs e durações das viagens com as 3 principais durações? |
103 | SELECT T1.name, T1.long, AVG(T2.duration) FROM station AS T1 JOIN trip AS T2 ON T1.id = T2.start_station_id GROUP BY T2.start_station_id | For each station, return its longitude and the average duration of trips that started from the station. | CREATE TABLE station (name VARCHAR, long VARCHAR, id VARCHAR); CREATE TABLE trip (duration INTEGER, start_station_id VARCHAR) | Para cada estação, devolva sua longitude e a duração média das viagens que começaram a partir da estação. |
104 | SELECT T1.name, T1.lat, MIN(T2.duration) FROM station AS T1 JOIN trip AS T2 ON T1.id = T2.end_station_id GROUP BY T2.end_station_id | For each station, find its latitude and the minimum duration of trips that ended at the station. | CREATE TABLE trip (duration INTEGER, end_station_id VARCHAR); CREATE TABLE station (name VARCHAR, lat VARCHAR, id VARCHAR) | Para cada estação, encontre sua latitude e a duração mínima das viagens que terminaram na estação. |
105 | SELECT DISTINCT start_station_name FROM trip WHERE duration < 100 | List all the distinct stations from which a trip of duration below 100 started. | CREATE TABLE trip (start_station_name VARCHAR, duration INTEGER) | Liste todas as estações distintas a partir das quais uma viagem de duração inferior a 100 começou. |
106 | SELECT DISTINCT zip_code FROM weather EXCEPT SELECT DISTINCT zip_code FROM weather WHERE max_dew_point_f >= 70 | Find all the zip codes in which the max dew point have never reached 70. | CREATE TABLE weather (zip_code VARCHAR, max_dew_point_f VARCHAR) | Encontre todos os códigos postais em que o ponto de orvalho máximo nunca chegou a 70. |
107 | SELECT id FROM trip WHERE duration >= (SELECT AVG(duration) FROM trip WHERE zip_code = 94103) | Find the id for the trips that lasted at least as long as the average duration of trips in zip code 94103. | CREATE TABLE trip (id VARCHAR, duration INTEGER, zip_code VARCHAR) | Encontre o ID para as viagens que duraram pelo menos tanto quanto a duração média das viagens no CEP 94103. |
108 | SELECT date FROM weather WHERE mean_sea_level_pressure_inches BETWEEN 30.3 AND 31 | What are the dates in which the mean sea level pressure was between 30.3 and 31? | CREATE TABLE weather (date VARCHAR, mean_sea_level_pressure_inches INTEGER) | Quais são as datas em que a pressão média do nível do mar estava entre 30,3 e 31? |
109 | SELECT date, max_temperature_f - min_temperature_f FROM weather ORDER BY max_temperature_f - min_temperature_f LIMIT 1 | Find the day in which the difference between the max temperature and min temperature was the smallest. Also report the difference. | CREATE TABLE weather (date VARCHAR, max_temperature_f VARCHAR, min_temperature_f VARCHAR) | Encontre o dia em que a diferença entre a temperatura máxima e a temperatura mínima foi a menor. Relate também a diferença. |
110 | SELECT DISTINCT T1.id, T1.name FROM station AS T1 JOIN status AS T2 ON T1.id = T2.station_id WHERE T2.bikes_available > 12 | What are the id and name of the stations that have ever had more than 12 bikes available? | CREATE TABLE station (id VARCHAR, name VARCHAR); CREATE TABLE status (station_id VARCHAR, bikes_available INTEGER) | Quais são o ID e o nome das estações que já tiveram mais de 12 bicicletas disponíveis? |
111 | SELECT zip_code FROM weather GROUP BY zip_code HAVING AVG(mean_humidity) < 70 INTERSECT SELECT zip_code FROM trip GROUP BY zip_code HAVING COUNT(*) >= 100 | Give me the zip code where the average mean humidity is below 70 and at least 100 trips took place. | CREATE TABLE weather (zip_code VARCHAR, mean_humidity INTEGER); CREATE TABLE trip (zip_code VARCHAR, mean_humidity INTEGER) | Dê-me o código postal onde a umidade média média é inferior a 70 e pelo menos 100 viagens ocorreram. |
112 | SELECT name FROM station WHERE city = "Palo Alto" EXCEPT SELECT end_station_name FROM trip GROUP BY end_station_name HAVING COUNT(*) > 100 | 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? | CREATE TABLE trip (name VARCHAR, end_station_name VARCHAR, city VARCHAR); CREATE TABLE station (name VARCHAR, end_station_name VARCHAR, city VARCHAR) | Quais são os nomes das estações que estão localizadas na cidade de Palo Alto, mas nunca foram o ponto final das viagens mais de 100 vezes? |
113 | SELECT COUNT(*) FROM station AS T1 JOIN trip AS T2 JOIN station AS T3 JOIN trip AS T4 ON T1.id = T2.start_station_id AND T2.id = T4.id AND T3.id = T4.end_station_id WHERE T1.city = "Mountain View" AND T3.city = "Palo Alto" | How many trips started from Mountain View city and ended at Palo Alto city? | CREATE TABLE station (city VARCHAR, id VARCHAR); CREATE TABLE trip (end_station_id VARCHAR, id VARCHAR); CREATE TABLE station (id VARCHAR, city VARCHAR); CREATE TABLE trip (start_station_id VARCHAR, id VARCHAR) | Quantas viagens começaram na cidade de Mountain View e terminaram na cidade de Palo Alto? |
114 | SELECT AVG(T1.lat), AVG(T1.long) FROM station AS T1 JOIN trip AS T2 ON T1.id = T2.start_station_id | What is the average latitude and longitude of the starting points of all trips? | CREATE TABLE trip (start_station_id VARCHAR); CREATE TABLE station (lat INTEGER, long INTEGER, id VARCHAR) | Qual é a latitude média e longitude dos pontos de partida de todas as viagens? |
115 | SELECT COUNT(*) FROM book | How many books are there? | CREATE TABLE book (Id VARCHAR) | Quantos livros existem? |
116 | SELECT Writer FROM book ORDER BY Writer | List the writers of the books in ascending alphabetical order. | CREATE TABLE book (Writer VARCHAR) | Liste os escritores dos livros em ordem alfabética ascendente. |
117 | SELECT Title FROM book ORDER BY Issues | List the titles of the books in ascending order of issues. | CREATE TABLE book (Title VARCHAR, Issues VARCHAR) | Liste os títulos dos livros em ordem crescente de números. |
118 | SELECT Title FROM book WHERE Writer <> "Elaine Lee" | What are the titles of the books whose writer is not "Elaine Lee"? | CREATE TABLE book (Title VARCHAR, Writer VARCHAR) | Quais são os títulos dos livros cujo escritor não é "Elaine Lee"? |
119 | SELECT Title, Issues FROM book | What are the title and issues of the books? | CREATE TABLE book (Title VARCHAR, Issues VARCHAR) | Quais são o título e as edições dos livros? |
120 | SELECT Publication_Date FROM publication ORDER BY Price DESC | What are the dates of publications in descending order of price? | CREATE TABLE publication (Publication_Date VARCHAR, Price VARCHAR) | Quais são as datas das publicações em ordem decrescente de preço? |
121 | SELECT DISTINCT Publisher FROM publication WHERE Price > 5000000 | What are the distinct publishers of publications with price higher than 5000000? | CREATE TABLE publication (Publisher VARCHAR, Price INTEGER) | Quais são as editoras distintas de publicações com preço superior a 5000000? |
122 | SELECT Publisher FROM publication ORDER BY Price DESC LIMIT 1 | List the publisher of the publication with the highest price. | CREATE TABLE publication (Publisher VARCHAR, Price VARCHAR) | Liste o editor da publicação com o preço mais alto. |
123 | SELECT Publication_Date FROM publication ORDER BY Price LIMIT 3 | List the publication dates of publications with 3 lowest prices. | CREATE TABLE publication (Publication_Date VARCHAR, Price VARCHAR) | Listar as datas de publicação das publicações com 3 preços mais baixos. |
124 | SELECT T1.Title, T2.Publication_Date FROM book AS T1 JOIN publication AS T2 ON T1.Book_ID = T2.Book_ID | Show the title and publication dates of books. | CREATE TABLE book (Title VARCHAR, Book_ID VARCHAR); CREATE TABLE publication (Publication_Date VARCHAR, Book_ID VARCHAR) | Mostrar o título e as datas de publicação dos livros. |
125 | SELECT T1.Writer FROM book AS T1 JOIN publication AS T2 ON T1.Book_ID = T2.Book_ID WHERE T2.Price > 4000000 | Show writers who have published a book with price more than 4000000. | CREATE TABLE publication (Book_ID VARCHAR, Price INTEGER); CREATE TABLE book (Writer VARCHAR, Book_ID VARCHAR) | Mostre aos escritores que publicaram um livro com preço superior a 4000000. |
126 | SELECT T1.Title FROM book AS T1 JOIN publication AS T2 ON T1.Book_ID = T2.Book_ID ORDER BY T2.Price DESC | Show the titles of books in descending order of publication price. | CREATE TABLE publication (Book_ID VARCHAR, Price VARCHAR); CREATE TABLE book (Title VARCHAR, Book_ID VARCHAR) | Mostre os títulos dos livros em ordem decrescente de preço de publicação. |
127 | SELECT Publisher FROM publication GROUP BY Publisher HAVING COUNT(*) > 1 | Show publishers that have more than one publication. | CREATE TABLE publication (Publisher VARCHAR) | Mostre aos editores que têm mais de uma publicação. |
128 | SELECT Publisher, COUNT(*) FROM publication GROUP BY Publisher | Show different publishers together with the number of publications they have. | CREATE TABLE publication (Publisher VARCHAR) | Mostre aos editores diferentes, juntamente com o número de publicações que eles têm. |
129 | SELECT Publication_Date FROM publication GROUP BY Publication_Date ORDER BY COUNT(*) DESC LIMIT 1 | Please show the most common publication date. | CREATE TABLE publication (Publication_Date VARCHAR) | Por favor, mostre a data de publicação mais comum. |
130 | SELECT Writer FROM book GROUP BY Writer HAVING COUNT(*) > 1 | List the writers who have written more than one book. | CREATE TABLE book (Writer VARCHAR) | Liste os escritores que escreveram mais de um livro. |
131 | SELECT Title FROM book WHERE NOT Book_ID IN (SELECT Book_ID FROM publication) | List the titles of books that are not published. | CREATE TABLE book (Title VARCHAR, Book_ID VARCHAR); CREATE TABLE publication (Title VARCHAR, Book_ID VARCHAR) | Liste os títulos dos livros que não foram publicados. |
132 | SELECT Publisher FROM publication WHERE Price > 10000000 INTERSECT SELECT Publisher FROM publication WHERE Price < 5000000 | Show the publishers that have publications with price higher than 10000000 and publications with price lower than 5000000. | CREATE TABLE publication (Publisher VARCHAR, Price INTEGER) | Mostre aos editores que têm publicações com preço superior a 10000000 e publicações com preço inferior a 5000000. |
133 | SELECT COUNT(DISTINCT Publication_Date) FROM publication | What is the number of distinct publication dates? | CREATE TABLE publication (Publication_Date VARCHAR) | Qual é o número de datas de publicação distintas? |
134 | SELECT Price FROM publication WHERE Publisher = "Person" OR Publisher = "Wiley" | Show the prices of publications whose publisher is either "Person" or "Wiley" | CREATE TABLE publication (Price VARCHAR, Publisher VARCHAR) | Mostrar os preços das publicações cujo editor seja "Pessoa" ou "Wiley" |
135 | SELECT COUNT(*) FROM actor | How many actors are there? | CREATE TABLE actor (Id VARCHAR) | Quantos atores existem? |
136 | SELECT Name FROM actor ORDER BY Name | List the name of actors in ascending alphabetical order. | CREATE TABLE actor (Name VARCHAR) | Listar o nome dos atores em ordem alfabética ascendente. |
137 | SELECT Character, Duration FROM actor | What are the characters and duration of actors? | CREATE TABLE actor (Character VARCHAR, Duration VARCHAR) | Quais são os personagens e a duração dos atores? |
138 | SELECT Name FROM actor WHERE Age <> 20 | List the name of actors whose age is not 20. | CREATE TABLE actor (Name VARCHAR, Age VARCHAR) | Liste o nome dos atores cuja idade não é de 20 anos. |
139 | SELECT Character FROM actor ORDER BY age DESC | What are the characters of actors in descending order of age? | CREATE TABLE actor (Character VARCHAR, age VARCHAR) | Quais são os personagens dos atores em ordem decrescente de idade? |
140 | SELECT Duration FROM actor ORDER BY Age DESC LIMIT 1 | What is the duration of the oldest actor? | CREATE TABLE actor (Duration VARCHAR, Age VARCHAR) | Qual é a duração do ator mais velho? |
141 | SELECT Name FROM musical WHERE Nominee = "Bob Fosse" | What are the names of musicals with nominee "Bob Fosse"? | CREATE TABLE musical (Name VARCHAR, Nominee VARCHAR) | Quais são os nomes dos musicais com o indicado "Bob Fosse"? |
142 | SELECT DISTINCT Nominee FROM musical WHERE Award <> "Tony Award" | What are the distinct nominees of the musicals with the award that is not "Tony Award"? | CREATE TABLE musical (Nominee VARCHAR, Award VARCHAR) | Quais são os indicados distintos dos musicais com o prêmio que não é "Tony Award"? |
143 | SELECT T1.Name, T2.Name FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID = T2.Musical_ID | Show names of actors and names of musicals they are in. | CREATE TABLE actor (Name VARCHAR, Musical_ID VARCHAR); CREATE TABLE musical (Name VARCHAR, Musical_ID VARCHAR) | Mostre nomes de atores e nomes de musicais em que eles estão. |
144 | SELECT T1.Name FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID = T2.Musical_ID WHERE T2.Name = "The Phantom of the Opera" | Show names of actors that have appeared in musical with name "The Phantom of the Opera". | CREATE TABLE actor (Name VARCHAR, Musical_ID VARCHAR); CREATE TABLE musical (Musical_ID VARCHAR, Name VARCHAR) | Mostre nomes de atores que apareceram no musical com o nome "O Fantasma da pera". |
145 | SELECT T1.Name FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID = T2.Musical_ID ORDER BY T2.Year DESC | Show names of actors in descending order of the year their musical is awarded. | CREATE TABLE musical (Musical_ID VARCHAR, Year VARCHAR); CREATE TABLE actor (Name VARCHAR, Musical_ID VARCHAR) | Mostre os nomes dos atores em ordem decrescente do ano em que seu musical é premiado. |
146 | SELECT T2.Name, COUNT(*) FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID = T2.Musical_ID GROUP BY T1.Musical_ID | Show names of musicals and the number of actors who have appeared in the musicals. | CREATE TABLE actor (Musical_ID VARCHAR); CREATE TABLE musical (Name VARCHAR, Musical_ID VARCHAR) | Mostre nomes de musicais e o número de atores que apareceram nos musicais. |
147 | SELECT T2.Name FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID = T2.Musical_ID GROUP BY T1.Musical_ID HAVING COUNT(*) >= 3 | Show names of musicals which have at least three actors. | CREATE TABLE actor (Musical_ID VARCHAR); CREATE TABLE musical (Name VARCHAR, Musical_ID VARCHAR) | Mostre nomes de musicais que tenham pelo menos três atores. |
148 | SELECT Nominee, COUNT(*) FROM musical GROUP BY Nominee | Show different nominees and the number of musicals they have been nominated. | CREATE TABLE musical (Nominee VARCHAR) | Mostre diferentes indicados e o número de musicais que eles foram nomeados. |
149 | SELECT Nominee FROM musical GROUP BY Nominee ORDER BY COUNT(*) DESC LIMIT 1 | Please show the nominee who has been nominated the greatest number of times. | CREATE TABLE musical (Nominee VARCHAR) | Por favor, mostre ao candidato que foi nomeado o maior número de vezes. |
150 | SELECT RESULT FROM musical GROUP BY RESULT ORDER BY COUNT(*) DESC LIMIT 1 | List the most common result of the musicals. | CREATE TABLE musical (RESULT VARCHAR) | Liste o resultado mais comum dos musicais. |
151 | SELECT Nominee FROM musical GROUP BY Nominee HAVING COUNT(*) > 2 | List the nominees that have been nominated more than two musicals. | CREATE TABLE musical (Nominee VARCHAR) | Liste os indicados que foram nomeados mais de dois musicais. |
152 | SELECT Name FROM musical WHERE NOT Musical_ID IN (SELECT Musical_ID FROM actor) | List the name of musicals that do not have actors. | CREATE TABLE actor (Name VARCHAR, Musical_ID VARCHAR); CREATE TABLE musical (Name VARCHAR, Musical_ID VARCHAR) | Liste o nome dos musicais que não têm atores. |
153 | SELECT Nominee FROM musical WHERE Award = "Tony Award" INTERSECT SELECT Nominee FROM musical WHERE Award = "Drama Desk Award" | Show the nominees that have nominated musicals for both "Tony Award" and "Drama Desk Award". | CREATE TABLE musical (Nominee VARCHAR, Award VARCHAR) | Mostre os indicados que nomearam musicais para "Tony Award" e "Drama Desk Award". |
154 | SELECT Nominee FROM musical WHERE Award = "Tony Award" OR Award = "Cleavant Derricks" | Show the musical nominee with award "Bob Fosse" or "Cleavant Derricks". | CREATE TABLE musical (Nominee VARCHAR, Award VARCHAR) | Mostre o indicado musical com o prêmio "Bob Fosse" ou "Cleavant Derricks". |
155 | SELECT email FROM user_profiles WHERE name = 'Mary' | Find the emails of the user named "Mary". | CREATE TABLE user_profiles (email VARCHAR, name VARCHAR) | Encontre os e-mails do usuário chamado "Mary". |
156 | SELECT partitionid FROM user_profiles WHERE name = 'Iron Man' | What is the partition id of the user named "Iron Man". | CREATE TABLE user_profiles (partitionid VARCHAR, name VARCHAR) | Qual é o ID de partição do usuário chamado "Homem de Ferro". |
157 | SELECT COUNT(*) FROM user_profiles | How many users are there? | CREATE TABLE user_profiles (Id VARCHAR) | Quantos usuários existem? |
158 | SELECT COUNT(*) FROM follows | How many followers does each user have? | CREATE TABLE follows (Id VARCHAR) | Quantos seguidores cada usuário tem? |
159 | SELECT COUNT(*) FROM follows GROUP BY f1 | Find the number of followers for each user. | CREATE TABLE follows (f1 VARCHAR) | Encontre o número de seguidores para cada usuário. |
160 | SELECT COUNT(*) FROM tweets | Find the number of tweets in record. | CREATE TABLE tweets (Id VARCHAR) | Encontre o número de tweets registrados. |
161 | SELECT COUNT(DISTINCT UID) FROM tweets | Find the number of users who posted some tweets. | CREATE TABLE tweets (UID VARCHAR) | Encontre o número de usuários que postaram alguns tweets. |
162 | SELECT name, email FROM user_profiles WHERE name LIKE '%Swift%' | Find the name and email of the user whose name contains the word ‘Swift’. | CREATE TABLE user_profiles (name VARCHAR, email VARCHAR) | Encontre o nome e o e-mail do usuário cujo nome contém a palavra 'Swift'. |
163 | SELECT name FROM user_profiles WHERE email LIKE '%superstar%' OR email LIKE '%edu%' | Find the names of users whose emails contain ‘superstar’ or ‘edu’. | CREATE TABLE user_profiles (name VARCHAR, email VARCHAR) | Encontre os nomes dos usuários cujos e-mails contenham “superstar” ou “edu”. |
164 | SELECT text FROM tweets WHERE text LIKE '%intern%' | Return the text of tweets about the topic 'intern'. | CREATE TABLE tweets (text VARCHAR) | Retorne o texto dos tweets sobre o tópico 'pesquisa'. |
165 | SELECT name, email FROM user_profiles WHERE followers > 1000 | Find the name and email of the users who have more than 1000 followers. | CREATE TABLE user_profiles (name VARCHAR, email VARCHAR, followers INTEGER) | Encontre o nome e o e-mail dos usuários que têm mais de 1000 seguidores. |
166 | SELECT T1.name FROM user_profiles AS T1 JOIN follows AS T2 ON T1.uid = T2.f1 GROUP BY T2.f1 HAVING COUNT(*) > (SELECT COUNT(*) FROM user_profiles AS T1 JOIN follows AS T2 ON T1.uid = T2.f1 WHERE T1.name = 'Tyler Swift') | Find the names of the users whose number of followers is greater than that of the user named "Tyler Swift". | CREATE TABLE follows (f1 VARCHAR); CREATE TABLE user_profiles (name VARCHAR, uid VARCHAR) | Encontre os nomes dos usuários cujo número de seguidores é maior do que o do usuário chamado "Tyler Swift". |
167 | SELECT T1.name, T1.email FROM user_profiles AS T1 JOIN follows AS T2 ON T1.uid = T2.f1 GROUP BY T2.f1 HAVING COUNT(*) > 1 | Find the name and email for the users who have more than one follower. | CREATE TABLE follows (f1 VARCHAR); CREATE TABLE user_profiles (name VARCHAR, email VARCHAR, uid VARCHAR) | Encontre o nome e o e-mail para os usuários que têm mais de um seguidor. |
168 | SELECT T1.name FROM user_profiles AS T1 JOIN tweets AS T2 ON T1.uid = T2.uid GROUP BY T2.uid HAVING COUNT(*) > 1 | Find the names of users who have more than one tweet. | CREATE TABLE tweets (uid VARCHAR); CREATE TABLE user_profiles (name VARCHAR, uid VARCHAR) | Encontre os nomes dos usuários que têm mais de um tweet. |
169 | SELECT T2.f1 FROM user_profiles AS T1 JOIN follows AS T2 ON T1.uid = T2.f2 WHERE T1.name = "Mary" INTERSECT SELECT T2.f1 FROM user_profiles AS T1 JOIN follows AS T2 ON T1.uid = T2.f2 WHERE T1.name = "Susan" | Find the id of users who are followed by Mary and Susan. | CREATE TABLE follows (f1 VARCHAR, f2 VARCHAR); CREATE TABLE user_profiles (uid VARCHAR, name VARCHAR) | Encontre o ID dos usuários que são seguidos por Mary e Susan. |
170 | SELECT T2.f1 FROM user_profiles AS T1 JOIN follows AS T2 ON T1.uid = T2.f2 WHERE T1.name = "Mary" OR T1.name = "Susan" | Find the id of users who are followed by Mary or Susan. | CREATE TABLE follows (f1 VARCHAR, f2 VARCHAR); CREATE TABLE user_profiles (uid VARCHAR, name VARCHAR) | Encontre o ID dos usuários que são seguidos por Mary ou Susan. |
171 | SELECT name FROM user_profiles ORDER BY followers DESC LIMIT 1 | Find the name of the user who has the largest number of followers. | CREATE TABLE user_profiles (name VARCHAR, followers VARCHAR) | Encontre o nome do usuário que tem o maior número de seguidores. |
172 | SELECT name, email FROM user_profiles ORDER BY followers LIMIT 1 | Find the name and email of the user followed by the least number of people. | CREATE TABLE user_profiles (name VARCHAR, email VARCHAR, followers VARCHAR) | Encontre o nome e o e-mail do usuário seguido pelo menor número de pessoas. |
173 | SELECT name, followers FROM user_profiles ORDER BY followers DESC | List the name and number of followers for each user, and sort the results by the number of followers in descending order. | CREATE TABLE user_profiles (name VARCHAR, followers VARCHAR) | Liste o nome e o número de seguidores para cada usuário e classifique os resultados pelo número de seguidores em ordem decrescente. |
174 | SELECT name FROM user_profiles ORDER BY followers DESC LIMIT 5 | List the names of 5 users followed by the largest number of other users. | CREATE TABLE user_profiles (name VARCHAR, followers VARCHAR) | Listar os nomes de 5 usuários seguidos pelo maior número de outros usuários. |
175 | SELECT text FROM tweets ORDER BY createdate | List the text of all tweets in the order of date. | CREATE TABLE tweets (text VARCHAR, createdate VARCHAR) | Liste o texto de todos os tweets na ordem da data. |
176 | SELECT T1.name, COUNT(*) FROM user_profiles AS T1 JOIN tweets AS T2 ON T1.uid = T2.uid GROUP BY T2.uid | Find the name of each user and number of tweets tweeted by each of them. | CREATE TABLE tweets (uid VARCHAR); CREATE TABLE user_profiles (name VARCHAR, uid VARCHAR) | Encontre o nome de cada usuário e o número de tweets tweetados por cada um deles. |
177 | SELECT T1.name, T1.partitionid FROM user_profiles AS T1 JOIN tweets AS T2 ON T1.uid = T2.uid GROUP BY T2.uid HAVING COUNT(*) < 2 | Find the name and partition id for users who tweeted less than twice. | CREATE TABLE user_profiles (name VARCHAR, partitionid VARCHAR, uid VARCHAR); CREATE TABLE tweets (uid VARCHAR) | Encontre o nome e o ID de partição para usuários que tuitaram menos de duas vezes. |
178 | SELECT T1.name, COUNT(*) FROM user_profiles AS T1 JOIN tweets AS T2 ON T1.uid = T2.uid GROUP BY T2.uid HAVING COUNT(*) > 1 | Find the name of the user who tweeted more than once, and number of tweets tweeted by them. | CREATE TABLE tweets (uid VARCHAR); CREATE TABLE user_profiles (name VARCHAR, uid VARCHAR) | Encontre o nome do usuário que twittou mais de uma vez e o número de tweets twittados por eles. |
179 | SELECT AVG(followers) FROM user_profiles WHERE NOT UID IN (SELECT UID FROM tweets) | Find the average number of followers for the users who do not have any tweet. | CREATE TABLE user_profiles (followers INTEGER, UID VARCHAR); CREATE TABLE tweets (followers INTEGER, UID VARCHAR) | Encontre o número médio de seguidores para os usuários que não têm nenhum tweet. |
180 | SELECT AVG(followers) FROM user_profiles WHERE UID IN (SELECT UID FROM tweets) | Find the average number of followers for the users who had some tweets. | CREATE TABLE user_profiles (followers INTEGER, UID VARCHAR); CREATE TABLE tweets (followers INTEGER, UID VARCHAR) | Encontre o número médio de seguidores para os usuários que tiveram alguns tweets. |
181 | SELECT MAX(followers), SUM(followers) FROM user_profiles | Find the maximum and total number of followers of all users. | CREATE TABLE user_profiles (followers INTEGER) | Encontre o número máximo e total de seguidores de todos os usuários. |
182 | SELECT DISTINCT (catalog_entry_name) FROM catalog_contents | Find the names of all the catalog entries. | CREATE TABLE catalog_contents (catalog_entry_name VARCHAR) | Encontre os nomes de todas as entradas do catálogo. |
183 | SELECT attribute_data_type FROM Attribute_Definitions GROUP BY attribute_data_type HAVING COUNT(*) > 3 | Find the list of attribute data types possessed by more than 3 attribute definitions. | CREATE TABLE Attribute_Definitions (attribute_data_type VARCHAR) | Encontre a lista de tipos de dados de atributos possuídos por mais de 3 definições de atributos. |
184 | SELECT attribute_data_type FROM Attribute_Definitions WHERE attribute_name = "Green" | What is the attribute data type of the attribute with name "Green"? | CREATE TABLE Attribute_Definitions (attribute_data_type VARCHAR, attribute_name VARCHAR) | Qual é o tipo de dados de atributo do atributo com o nome "Verde"? |
185 | SELECT catalog_level_name, catalog_level_number FROM Catalog_Structure WHERE catalog_level_number BETWEEN 5 AND 10 | Find the name and level of catalog structure with level between 5 and 10. | CREATE TABLE Catalog_Structure (catalog_level_name VARCHAR, catalog_level_number INTEGER) | Encontre o nome e o nível da estrutura do catálogo com nível entre 5 e 10. |
186 | SELECT DISTINCT (catalog_publisher) FROM catalogs WHERE catalog_publisher LIKE "%Murray%" | Find all the catalog publishers whose name contains "Murray" | CREATE TABLE catalogs (catalog_publisher VARCHAR) | Encontre todos os editores de catálogo cujo nome contém "Murray" |
187 | SELECT catalog_publisher FROM catalogs GROUP BY catalog_publisher ORDER BY COUNT(*) DESC LIMIT 1 | Which catalog publisher has published the most catalogs? | CREATE TABLE catalogs (catalog_publisher VARCHAR) | Qual editor de catálogo publicou a maioria dos catálogos? |
188 | SELECT t1.catalog_name, t1.date_of_publication FROM catalogs AS t1 JOIN catalog_structure AS t2 ON t1.catalog_id = t2.catalog_id WHERE catalog_level_number > 5 | Find the names and publication dates of all catalogs that have catalog level number greater than 5. | CREATE TABLE catalogs (catalog_name VARCHAR, date_of_publication VARCHAR, catalog_id VARCHAR); CREATE TABLE catalog_structure (catalog_id VARCHAR) | Encontre os nomes e as datas de publicação de todos os catálogos que tenham um número de nível de catálogo maior que 5. |
189 | SELECT t1.catalog_entry_name FROM Catalog_Contents AS t1 JOIN Catalog_Contents_Additional_Attributes AS t2 ON t1.catalog_entry_id = t2.catalog_entry_id WHERE t2.attribute_value = (SELECT attribute_value FROM Catalog_Contents_Additional_Attributes GROUP BY attribute_value ORDER BY COUNT(*) DESC LIMIT 1) | What are the entry names of catalog with the attribute possessed by most entries. | CREATE TABLE Catalog_Contents_Additional_Attributes (catalog_entry_id VARCHAR, attribute_value VARCHAR); CREATE TABLE Catalog_Contents (catalog_entry_name VARCHAR, catalog_entry_id VARCHAR); CREATE TABLE Catalog_Contents_Additional_Attributes (attribute_value VARCHAR) | Quais são os nomes de entrada do catálogo com o atributo possuído pela maioria das entradas. |
190 | SELECT catalog_entry_name FROM catalog_contents ORDER BY price_in_dollars DESC LIMIT 1 | What is the entry name of the most expensive catalog (in USD)? | CREATE TABLE catalog_contents (catalog_entry_name VARCHAR, price_in_dollars VARCHAR) | Qual é o nome de entrada do catálogo mais caro (em USD)? |
191 | SELECT t2.catalog_level_name FROM catalog_contents AS t1 JOIN catalog_structure AS t2 ON t1.catalog_level_number = t2.catalog_level_number ORDER BY t1.price_in_dollars LIMIT 1 | What is the level name of the cheapest catalog (in USD)? | CREATE TABLE catalog_structure (catalog_level_name VARCHAR, catalog_level_number VARCHAR); CREATE TABLE catalog_contents (catalog_level_number VARCHAR, price_in_dollars VARCHAR) | Qual é o nome de nível do catálogo mais barato (em USD)? |
192 | SELECT AVG(price_in_euros), MIN(price_in_euros) FROM catalog_contents | What are the average and minimum price (in Euro) of all products? | CREATE TABLE catalog_contents (price_in_euros INTEGER) | Qual é o preço médio e mínimo (em euros) de todos os produtos? |
193 | SELECT catalog_entry_name FROM catalog_contents ORDER BY height DESC LIMIT 1 | What is the product with the highest height? Give me the catalog entry name. | CREATE TABLE catalog_contents (catalog_entry_name VARCHAR, height VARCHAR) | Qual é o produto com a altura mais alta? Dê-me o nome de entrada do catálogo. |
194 | SELECT catalog_entry_name FROM catalog_contents ORDER BY capacity LIMIT 1 | Find the name of the product that has the smallest capacity. | CREATE TABLE catalog_contents (catalog_entry_name VARCHAR, capacity VARCHAR) | Encontre o nome do produto que tem a menor capacidade. |
195 | SELECT catalog_entry_name FROM catalog_contents WHERE product_stock_number LIKE "2%" | Find the names of all the products whose stock number starts with "2". | CREATE TABLE catalog_contents (catalog_entry_name VARCHAR, product_stock_number VARCHAR) | Encontre os nomes de todos os produtos cujo número de estoque começa com "2". |
196 | SELECT t1.catalog_entry_name FROM Catalog_Contents AS t1 JOIN Catalog_Contents_Additional_Attributes AS t2 ON t1.catalog_entry_id = t2.catalog_entry_id WHERE t2.catalog_level_number = "8" | Find the names of catalog entries with level number 8. | CREATE TABLE Catalog_Contents_Additional_Attributes (catalog_entry_id VARCHAR, catalog_level_number VARCHAR); CREATE TABLE Catalog_Contents (catalog_entry_name VARCHAR, catalog_entry_id VARCHAR) | Encontre os nomes das entradas do catálogo com o nível 8. |
197 | SELECT catalog_entry_name FROM catalog_contents WHERE LENGTH < 3 OR width > 5 | Find the names of the products with length smaller than 3 or height greater than 5. | CREATE TABLE catalog_contents (catalog_entry_name VARCHAR, LENGTH VARCHAR, width VARCHAR) | Encontre os nomes dos produtos com comprimento menor que 3 ou altura maior que 5. |
198 | SELECT t1.attribute_name, t1.attribute_id FROM Attribute_Definitions AS t1 JOIN Catalog_Contents_Additional_Attributes AS t2 ON t1.attribute_id = t2.attribute_id WHERE t2.attribute_value = 0 | Find the name and attribute ID of the attribute definitions with attribute value 0. | CREATE TABLE Catalog_Contents_Additional_Attributes (attribute_id VARCHAR, attribute_value VARCHAR); CREATE TABLE Attribute_Definitions (attribute_name VARCHAR, attribute_id VARCHAR) | Encontre o nome e o ID de atributo das definições de atributo com valor de atributo 0. |
199 | SELECT catalog_entry_name, capacity FROM Catalog_Contents WHERE price_in_dollars > 700 | Find the name and capacity of products with price greater than 700 (in USD). | CREATE TABLE Catalog_Contents (catalog_entry_name VARCHAR, capacity VARCHAR, price_in_dollars INTEGER) | Encontre o nome e a capacidade dos produtos com preço superior a 700 (em USD). |