SQL
stringlengths
18
577
question
stringlengths
317
11.5k
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "alameda" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. give me some good restaurants in alameda ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "san francisco" AND t2.street_name = "buchanan" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. where is a good restaurant on buchanan in san francisco for arabic food ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "san francisco" AND t2.street_name = "buchanan" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. where are some good arabics on buchanan in san francisco ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "san francisco" AND t2.street_name = "buchanan" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. where is a good arabic restaurant on buchanan in san francisco ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "san francisco" AND t2.street_name = "buchanan" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. what are some good places for arabic on buchanan in san francisco ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "san francisco" AND t2.street_name = "buchanan" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. give me a good arabic on buchanan in san francisco ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "san francisco" AND t2.street_name = "buchanan" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. give me some restaurants good for arabic food on buchanan in san francisco ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "san francisco" AND t2.street_name = "buchanan" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. give me a good place on buchanan in san francisco for arabic food ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "san francisco" AND t2.street_name = "buchanan" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. where is a good place on buchanan in san francisco for arabic food ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "san francisco" AND t2.street_name = "buchanan" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. where can i eat arabic food on buchanan in san francisco ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "san francisco" AND t2.street_name = "buchanan" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. give me some good places on buchanan in san francisco for arabic food ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "san francisco" AND t2.street_name = "buchanan" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. where is a arabic restaurant on buchanan in san francisco ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "san francisco" AND t2.street_name = "buchanan" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. give me a restaurant on buchanan in san francisco that serves good arabic food ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "san francisco" AND t2.street_name = "buchanan" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. give me a good restaurant on buchanan in san francisco for arabic food ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "san francisco" AND t2.street_name = "buchanan" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. where is a restaurant on buchanan in san francisco that serves good arabic food ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "san francisco" AND t2.street_name = "buchanan" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. give me some good restaurants on buchanan in san francisco for arabic food ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "san francisco" AND t2.street_name = "buchanan" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. give me some good places for arabic on buchanan in san francisco ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "san francisco" AND t2.street_name = "buchanan" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. where can i eat some good arabic food on buchanan in san francisco ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "san francisco" AND t2.street_name = "buchanan" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. where is a good arabic on buchanan in san francisco ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "san francisco" AND t2.street_name = "buchanan" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. where are some restaurants good for arabic food on buchanan in san francisco ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "san francisco" AND t2.street_name = "buchanan" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. where are some good places for arabic on buchanan in san francisco ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "san francisco" AND t2.street_name = "buchanan" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. give me a good arabic restaurant on buchanan in san francisco ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "san francisco" AND t2.street_name = "buchanan" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. give me some good arabics on buchanan in san francisco ?
SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = "bay area" AND t1.food_type = "french";
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. where can i eat french food in the bay area ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "bethel island" AND t2.street_name = "bethel island rd";
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. give me some restaurants on bethel island rd in bethel island ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "bethel island" AND t2.street_name = "bethel island rd";
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. give me a restaurant on bethel island rd in bethel island ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "bethel island" AND t2.street_name = "bethel island rd";
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. where can we find a restaurant on bethel island rd in bethel island ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "bethel island" AND t2.street_name = "bethel island rd";
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. where can we find some restaurants on bethel island rd in bethel island ?
SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = "bay area" AND t1.food_type = "american" AND t1.rating = ( SELECT MAX ( t1.rating ) FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name WHERE t2.region = "bay area" AND t1.food_type = "american" );
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. where is the best restaurant in the bay area for american food ?
SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = "bay area" AND t1.food_type = "american" AND t1.rating = ( SELECT MAX ( t1.rating ) FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name WHERE t2.region = "bay area" AND t1.food_type = "american" );
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. where is the best restaurant in bay area for american food ?
SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = "bay area" AND t1.food_type = "american" AND t1.rating = ( SELECT MAX ( t1.rating ) FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name WHERE t2.region = "bay area" AND t1.food_type = "american" );
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. what is the best restaurant in bay area for american food ?
SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = "bay area" AND t1.food_type = "american" AND t1.rating = ( SELECT MAX ( t1.rating ) FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name WHERE t2.region = "bay area" AND t1.food_type = "american" );
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. what is the best american restaurant in the bay area ?
SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = "bay area" AND t1.food_type = "american" AND t1.rating = ( SELECT MAX ( t1.rating ) FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name WHERE t2.region = "bay area" AND t1.food_type = "american" );
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. where is the best american restaurant in the bay area ?
SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = "bay area" AND t1.food_type = "american" AND t1.rating = ( SELECT MAX ( t1.rating ) FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name WHERE t2.region = "bay area" AND t1.food_type = "american" );
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. what is the best american in the bay area ?
SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = "bay area" AND t1.food_type = "american" AND t1.rating = ( SELECT MAX ( t1.rating ) FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name WHERE t2.region = "bay area" AND t1.food_type = "american" );
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. give me the best restaurant in the bay area for american food ?
SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = "bay area" AND t1.food_type = "american" AND t1.rating = ( SELECT MAX ( t1.rating ) FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name WHERE t2.region = "bay area" AND t1.food_type = "american" );
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. give me the best restaurant in bay area for american food ?
SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = "bay area" AND t1.food_type = "american" AND t1.rating = ( SELECT MAX ( t1.rating ) FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name WHERE t2.region = "bay area" AND t1.food_type = "american" );
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. what is the best restaurant in the bay area for american food ?
SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = "bay area" AND t1.food_type = "american" AND t1.rating = ( SELECT MAX ( t1.rating ) FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name WHERE t2.region = "bay area" AND t1.food_type = "american" );
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. where is the best american in the bay area ?
SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = "bay area" AND t1.food_type = "american" AND t1.rating = ( SELECT MAX ( t1.rating ) FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name WHERE t2.region = "bay area" AND t1.food_type = "american" );
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. give me the best american in the bay area ?
SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = "bay area" AND t1.food_type = "american" AND t1.rating = ( SELECT MAX ( t1.rating ) FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name WHERE t2.region = "bay area" AND t1.food_type = "american" );
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. give me the best american restaurant in the bay area ?
SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = "yosemite and mono lake area" AND t1.food_type = "french" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. give me some restaurants good for french food in the yosemite and mono lake area ?
SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = "yosemite and mono lake area" AND t1.food_type = "french" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. what are some good places in the yosemite and mono lake area for french food ?
SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = "yosemite and mono lake area" AND t1.food_type = "french" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. give me a good restaurant in the yosemite and mono lake area for french food ?
SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = "yosemite and mono lake area" AND t1.food_type = "french" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. give me a good french restaurant in the yosemite and mono lake area ?
SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = "yosemite and mono lake area" AND t1.food_type = "french" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. where is a good place in the yosemite and mono lake area for french food ?
SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = "yosemite and mono lake area" AND t1.food_type = "french" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. where are some restaurants good for french food in the yosemite and mono lake area ?
SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = "yosemite and mono lake area" AND t1.food_type = "french" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. give me a good place in the yosemite and mono lake area for french food ?
SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = "yosemite and mono lake area" AND t1.food_type = "french" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. where is a good restaurant in the yosemite and mono lake area for french food ?
SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = "yosemite and mono lake area" AND t1.food_type = "french" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. what are some good restaurants in the yosemite and mono lake area for french food ?
SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = "yosemite and mono lake area" AND t1.food_type = "french" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. where is a good french restaurant in the yosemite and mono lake area ?
SELECT t3.house_number , t1.name FROM restaurant AS t1 JOIN geographic AS t2 ON t1.city_name = t2.city_name JOIN LOCATION AS t3 ON t1.id = t3.restaurant_id WHERE t2.region = "yosemite and mono lake area" AND t1.food_type = "french" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. where can i eat some good french food in the yosemite and mono lake area ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "mountain view" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. where are some restaurants good for arabic food in mountain view ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "mountain view" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. what are some good places in mountain view for arabic food ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "mountain view" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. where are some good arabic restaurants in mountain view ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "mountain view" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. show me a good arabic restaurant in mountain view ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "mountain view" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. give me a good arabic in mountain view ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "mountain view" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. give me a good arabic restaurant in mountain view ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "mountain view" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. give me a good place in mountain view for arabic food ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "mountain view" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. where are some good arabics in mountain view ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "mountain view" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. where is a restaurant in mountain view that serves good arabic food ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "mountain view" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. what are some good restaurants in mountain view for arabic food ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "mountain view" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. give me some restaurants good for arabic food in mountain view ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "mountain view" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. where can i eat some good arabic food in mountain view ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "mountain view" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. give me some good places for arabic in mountain view ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "mountain view" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. where is a good arabic in mountain view ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "mountain view" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. give me a restaurant in mountain view that serves good arabic food ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "mountain view" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. give me some good arabic restaurants in mountain view ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "mountain view" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. where are some good places for arabic in mountain view ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "mountain view" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. give me some good arabics in mountain view ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "mountain view" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. give me a good restaurant in mountain view for arabic food ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "mountain view" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. where is a good arabic restaurant in mountain view ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "mountain view" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. what are some good places for arabic in mountain view ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "mountain view" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. where is a good restaurant in mountain view for arabic food ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "mountain view" AND t1.food_type = "arabic" AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. where is a good place in mountain view for arabic food ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "san francisco" AND t1.name = "jamerican cuisine";
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. where can i find a jamerican cuisine in san francisco ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "san francisco" AND t1.name = "jamerican cuisine";
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. where is jamerican cuisine in san francisco ?
SELECT t2.house_number , t1.name FROM restaurant AS t1 JOIN LOCATION AS t2 ON t1.id = t2.restaurant_id WHERE t2.city_name = "san francisco" AND t1.name = "jamerican cuisine";
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. where is a jamerican cuisine in san francisco ?
SELECT t2.house_number , t1.name FROM LOCATION AS t2 JOIN restaurant AS t1 ON t1.id = t2.restaurant_id WHERE t1.city_name IN ( SELECT city_name FROM geographic WHERE region = "bay area" );
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. where can we find some restaurants in the bay area ?
SELECT t2.house_number , t1.name FROM LOCATION AS t2 JOIN restaurant AS t1 ON t1.id = t2.restaurant_id WHERE t1.city_name IN ( SELECT city_name FROM geographic WHERE region = "bay area" );
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. give me some restaurants in the bay area ?
SELECT t2.house_number , t1.name FROM LOCATION AS t2 JOIN restaurant AS t1 ON t1.id = t2.restaurant_id WHERE t1.city_name IN ( SELECT city_name FROM geographic WHERE region = "bay area" );
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. give me a restaurant in the bay area ?
SELECT t2.house_number , t1.name FROM LOCATION AS t2 JOIN restaurant AS t1 ON t1.id = t2.restaurant_id WHERE t1.city_name IN ( SELECT city_name FROM geographic WHERE region = "bay area" );
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. where can i find a restaurant in the bay area ?
SELECT t2.house_number , t1.name FROM LOCATION AS t2 JOIN restaurant AS t1 ON t1.id = t2.restaurant_id WHERE t1.city_name IN ( SELECT city_name FROM geographic WHERE region = "region0" ) AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. give me a good restaurant in the bay area ?
SELECT t2.house_number , t1.name FROM LOCATION AS t2 JOIN restaurant AS t1 ON t1.id = t2.restaurant_id WHERE t1.city_name IN ( SELECT city_name FROM geographic WHERE region = "region0" ) AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. what are some good restaurants in the bay area ?
SELECT t2.house_number , t1.name FROM LOCATION AS t2 JOIN restaurant AS t1 ON t1.id = t2.restaurant_id WHERE t1.city_name IN ( SELECT city_name FROM geographic WHERE region = "region0" ) AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. give me some good restaurants in the bay area ?
SELECT t2.house_number , t1.name FROM LOCATION AS t2 JOIN restaurant AS t1 ON t1.id = t2.restaurant_id WHERE t1.city_name IN ( SELECT city_name FROM geographic WHERE region = "region0" ) AND t1.rating > 2.5;
Given the Table geographic having columns as CITY_NAME has datatype text, COUNTY has datatype text, REGION has datatype text which has CITY_NAME and Given the Table restaurant having columns as ID has datatype number, NAME has datatype text, FOOD_TYPE has datatype text, CITY_NAME has datatype text, RATING has datatype number which has ID and Given the Table location having columns as RESTAURANT_ID has datatype number, HOUSE_NUMBER has datatype number, STREET_NAME has datatype text, CITY_NAME has datatype text which has RESTAURANT_ID. Answer the question by writing the appropriate SQL code. what is a good restaurant in the bay area ?
SELECT PSH FROM football_data WHERE HomeTeam LIKE "%Arsenal%" AND FTR = "H" UNION SELECT PSA FROM football_data WHERE AwayTeam LIKE "%Arsenal%" AND FTR = "A"
Given the Table betfront having columns as YEAR has datatype number, DATETIME has datatype time, COUNTRY has datatype text, COMPETION has datatype text, MATCH has datatype text, HOME_OPENING has datatype number, DRAW_OPENING has datatype number, AWAY_OPENING has datatype number, HOME_CLOSING has datatype number, DRAW_CLOSING has datatype number, AWAY_CLOSING has datatype number which has NO_PRIMARY_KEY and Given the Table football data having columns as Season has datatype text, Datetime has datatype time, Div has datatype text, Country has datatype text, League has datatype text, Referee has datatype text, HomeTeam has datatype text, AwayTeam has datatype text, FTHG has datatype number, FTAG has datatype number, FTR has datatype text, HTHG has datatype number, HTAG has datatype number, HTR has datatype text, PSH has datatype number, PSD has datatype number, PSA has datatype number, B365H has datatype number, B365D has datatype number, B365A has datatype number, LBH has datatype number, LBD has datatype number, LBA has datatype number, BWH has datatype number, BWD has datatype number, BWA has datatype number which has NO_PRIMARY_KEY. Answer the question by writing the appropriate SQL code. What are the Pinnacle odds for Arsenal winning matches?
SELECT * FROM football_data WHERE Country = "Spain" AND FTR = "A"
Given the Table betfront having columns as YEAR has datatype number, DATETIME has datatype time, COUNTRY has datatype text, COMPETION has datatype text, MATCH has datatype text, HOME_OPENING has datatype number, DRAW_OPENING has datatype number, AWAY_OPENING has datatype number, HOME_CLOSING has datatype number, DRAW_CLOSING has datatype number, AWAY_CLOSING has datatype number which has NO_PRIMARY_KEY and Given the Table football data having columns as Season has datatype text, Datetime has datatype time, Div has datatype text, Country has datatype text, League has datatype text, Referee has datatype text, HomeTeam has datatype text, AwayTeam has datatype text, FTHG has datatype number, FTAG has datatype number, FTR has datatype text, HTHG has datatype number, HTAG has datatype number, HTR has datatype text, PSH has datatype number, PSD has datatype number, PSA has datatype number, B365H has datatype number, B365D has datatype number, B365A has datatype number, LBH has datatype number, LBD has datatype number, LBA has datatype number, BWH has datatype number, BWD has datatype number, BWA has datatype number which has NO_PRIMARY_KEY. Answer the question by writing the appropriate SQL code. Which matches in Spain did the away team win?
SELECT * FROM football_data WHERE Season = "2016" AND FTR = "D" AND League = "Premier League"
Given the Table betfront having columns as YEAR has datatype number, DATETIME has datatype time, COUNTRY has datatype text, COMPETION has datatype text, MATCH has datatype text, HOME_OPENING has datatype number, DRAW_OPENING has datatype number, AWAY_OPENING has datatype number, HOME_CLOSING has datatype number, DRAW_CLOSING has datatype number, AWAY_CLOSING has datatype number which has NO_PRIMARY_KEY and Given the Table football data having columns as Season has datatype text, Datetime has datatype time, Div has datatype text, Country has datatype text, League has datatype text, Referee has datatype text, HomeTeam has datatype text, AwayTeam has datatype text, FTHG has datatype number, FTAG has datatype number, FTR has datatype text, HTHG has datatype number, HTAG has datatype number, HTR has datatype text, PSH has datatype number, PSD has datatype number, PSA has datatype number, B365H has datatype number, B365D has datatype number, B365A has datatype number, LBH has datatype number, LBD has datatype number, LBA has datatype number, BWH has datatype number, BWD has datatype number, BWA has datatype number which has NO_PRIMARY_KEY. Answer the question by writing the appropriate SQL code. Which Premier League matches ended in a draw in 2016?
SELECT * FROM football_data WHERE B365D > 3
Given the Table betfront having columns as YEAR has datatype number, DATETIME has datatype time, COUNTRY has datatype text, COMPETION has datatype text, MATCH has datatype text, HOME_OPENING has datatype number, DRAW_OPENING has datatype number, AWAY_OPENING has datatype number, HOME_CLOSING has datatype number, DRAW_CLOSING has datatype number, AWAY_CLOSING has datatype number which has NO_PRIMARY_KEY and Given the Table football data having columns as Season has datatype text, Datetime has datatype time, Div has datatype text, Country has datatype text, League has datatype text, Referee has datatype text, HomeTeam has datatype text, AwayTeam has datatype text, FTHG has datatype number, FTAG has datatype number, FTR has datatype text, HTHG has datatype number, HTAG has datatype number, HTR has datatype text, PSH has datatype number, PSD has datatype number, PSA has datatype number, B365H has datatype number, B365D has datatype number, B365A has datatype number, LBH has datatype number, LBD has datatype number, LBA has datatype number, BWH has datatype number, BWD has datatype number, BWA has datatype number which has NO_PRIMARY_KEY. Answer the question by writing the appropriate SQL code. Which matches had draw odds from Bet365 higher than 3?
SELECT DRAW_CLOSING FROM betfront WHERE MATCH LIKE "%VfB Stuttgart%"
Given the Table betfront having columns as YEAR has datatype number, DATETIME has datatype time, COUNTRY has datatype text, COMPETION has datatype text, MATCH has datatype text, HOME_OPENING has datatype number, DRAW_OPENING has datatype number, AWAY_OPENING has datatype number, HOME_CLOSING has datatype number, DRAW_CLOSING has datatype number, AWAY_CLOSING has datatype number which has NO_PRIMARY_KEY and Given the Table football data having columns as Season has datatype text, Datetime has datatype time, Div has datatype text, Country has datatype text, League has datatype text, Referee has datatype text, HomeTeam has datatype text, AwayTeam has datatype text, FTHG has datatype number, FTAG has datatype number, FTR has datatype text, HTHG has datatype number, HTAG has datatype number, HTR has datatype text, PSH has datatype number, PSD has datatype number, PSA has datatype number, B365H has datatype number, B365D has datatype number, B365A has datatype number, LBH has datatype number, LBD has datatype number, LBA has datatype number, BWH has datatype number, BWD has datatype number, BWA has datatype number which has NO_PRIMARY_KEY. Answer the question by writing the appropriate SQL code. What were the closing odds for a draw in matches with VfB Stuttgart?
SELECT * FROM football_data WHERE (FTHG + FTAG) = 0
Given the Table betfront having columns as YEAR has datatype number, DATETIME has datatype time, COUNTRY has datatype text, COMPETION has datatype text, MATCH has datatype text, HOME_OPENING has datatype number, DRAW_OPENING has datatype number, AWAY_OPENING has datatype number, HOME_CLOSING has datatype number, DRAW_CLOSING has datatype number, AWAY_CLOSING has datatype number which has NO_PRIMARY_KEY and Given the Table football data having columns as Season has datatype text, Datetime has datatype time, Div has datatype text, Country has datatype text, League has datatype text, Referee has datatype text, HomeTeam has datatype text, AwayTeam has datatype text, FTHG has datatype number, FTAG has datatype number, FTR has datatype text, HTHG has datatype number, HTAG has datatype number, HTR has datatype text, PSH has datatype number, PSD has datatype number, PSA has datatype number, B365H has datatype number, B365D has datatype number, B365A has datatype number, LBH has datatype number, LBD has datatype number, LBA has datatype number, BWH has datatype number, BWD has datatype number, BWA has datatype number which has NO_PRIMARY_KEY. Answer the question by writing the appropriate SQL code. Which games had no goals scored at full time?
SELECT groupName, groupYear FROM torrents
Given the Table torrents having columns as groupName has datatype text, totalSnatched has datatype number, artist has datatype text, groupYear has datatype number, releaseType has datatype text, groupId has datatype number, id has datatype number which has id and Given the Table tags having columns as index has datatype number, id has datatype number, tag has datatype text which has id. Answer the question by writing the appropriate SQL code. what year was each specific entry released?
SELECT groupName, artist FROM torrents
Given the Table torrents having columns as groupName has datatype text, totalSnatched has datatype number, artist has datatype text, groupYear has datatype number, releaseType has datatype text, groupId has datatype number, id has datatype number which has id and Given the Table tags having columns as index has datatype number, id has datatype number, tag has datatype text which has id. Answer the question by writing the appropriate SQL code. what are the entries by each specific artist/group?
SELECT DISTINCT tag FROM tags
Given the Table torrents having columns as groupName has datatype text, totalSnatched has datatype number, artist has datatype text, groupYear has datatype number, releaseType has datatype text, groupId has datatype number, id has datatype number which has id and Given the Table tags having columns as index has datatype number, id has datatype number, tag has datatype text which has id. Answer the question by writing the appropriate SQL code. which tags exist?
SELECT DISTINCT releaseType FROM torrents
Given the Table torrents having columns as groupName has datatype text, totalSnatched has datatype number, artist has datatype text, groupYear has datatype number, releaseType has datatype text, groupId has datatype number, id has datatype number which has id and Given the Table tags having columns as index has datatype number, id has datatype number, tag has datatype text which has id. Answer the question by writing the appropriate SQL code. what release types are captured in this data set?
SELECT groupName FROM torrents WHERE groupYear > 2000 ORDER BY totalSnatched DESC LIMIT 5
Given the Table torrents having columns as groupName has datatype text, totalSnatched has datatype number, artist has datatype text, groupYear has datatype number, releaseType has datatype text, groupId has datatype number, id has datatype number which has id and Given the Table tags having columns as index has datatype number, id has datatype number, tag has datatype text which has id. Answer the question by writing the appropriate SQL code. Find me top 5 most popular releases after 2000?
SELECT DISTINCT groupName FROM torrents WHERE totalSnatched > 100 AND releaseType = "album"
Given the Table torrents having columns as groupName has datatype text, totalSnatched has datatype number, artist has datatype text, groupYear has datatype number, releaseType has datatype text, groupId has datatype number, id has datatype number which has id and Given the Table tags having columns as index has datatype number, id has datatype number, tag has datatype text which has id. Answer the question by writing the appropriate SQL code. Which albums have been downloaded more than 100 times?
SELECT T2.groupName FROM torrents as T2 JOIN tags as T1 ON T1.id = T2.id WHERE T1.tag = "houston" ORDER BY totalSnatched DESC LIMIT 1
Given the Table torrents having columns as groupName has datatype text, totalSnatched has datatype number, artist has datatype text, groupYear has datatype number, releaseType has datatype text, groupId has datatype number, id has datatype number which has id and Given the Table tags having columns as index has datatype number, id has datatype number, tag has datatype text which has id. Answer the question by writing the appropriate SQL code. Name the most popular release on houston.
SELECT groupName FROM torrents WHERE artist = "lasean camry" AND totalSnatched = (SELECT max(totalSnatched) FROM torrents WHERE artist = "lasean camry") UNION SELECT groupName FROM torrents WHERE artist = "lasean camry" AND totalSnatched = (SELECT min(totalSnatched) FROM torrents WHERE artist = "lasean camry")
Given the Table torrents having columns as groupName has datatype text, totalSnatched has datatype number, artist has datatype text, groupYear has datatype number, releaseType has datatype text, groupId has datatype number, id has datatype number which has id and Given the Table tags having columns as index has datatype number, id has datatype number, tag has datatype text which has id. Answer the question by writing the appropriate SQL code. Name the most popular and least popular releases of lasean camry?
SELECT groupName FROM torrents WHERE releaseType = "album" ORDER BY totalSnatched DESC LIMIT 10
Given the Table torrents having columns as groupName has datatype text, totalSnatched has datatype number, artist has datatype text, groupYear has datatype number, releaseType has datatype text, groupId has datatype number, id has datatype number which has id and Given the Table tags having columns as index has datatype number, id has datatype number, tag has datatype text which has id. Answer the question by writing the appropriate SQL code. Find me top 10 albums ranked by their popularity.