db_id
stringlengths 3
31
| query
stringlengths 18
577
| question
stringlengths 3
224
| schema
stringlengths 177
6.14k
| primary_keys
stringlengths 16
545
| foreign_keys
stringlengths 16
1.48k
|
---|---|---|---|---|---|
restaurants
|
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";
|
where can we find a restaurant on bethel island rd in bethel island ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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";
|
where can we find some restaurants on bethel island rd in bethel island ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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" );
|
where is the best restaurant in the bay area for american food ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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" );
|
where is the best restaurant in bay area for american food ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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" );
|
what is the best restaurant in bay area for american food ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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" );
|
what is the best american restaurant in the bay area ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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" );
|
where is the best american restaurant in the bay area ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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" );
|
what is the best american in the bay area ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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" );
|
give me the best restaurant in the bay area for american food ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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" );
|
give me the best restaurant in bay area for american food ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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" );
|
what is the best restaurant in the bay area for american food ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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" );
|
where is the best american in the bay area ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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" );
|
give me the best american in the bay area ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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" );
|
give me the best american restaurant in the bay area ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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;
|
give me some restaurants good for french food in the yosemite and mono lake area ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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;
|
what are some good places in the yosemite and mono lake area for french food ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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;
|
give me a good restaurant in the yosemite and mono lake area for french food ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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;
|
give me a good french restaurant in the yosemite and mono lake area ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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;
|
where is a good place in the yosemite and mono lake area for french food ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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;
|
where are some restaurants good for french food in the yosemite and mono lake area ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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;
|
give me a good place in the yosemite and mono lake area for french food ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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;
|
where is a good restaurant in the yosemite and mono lake area for french food ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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;
|
what are some good restaurants in the yosemite and mono lake area for french food ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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;
|
where is a good french restaurant in the yosemite and mono lake area ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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;
|
where can i eat some good french food in the yosemite and mono lake area ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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;
|
where are some restaurants good for arabic food in mountain view ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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;
|
what are some good places in mountain view for arabic food ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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;
|
where are some good arabic restaurants in mountain view ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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;
|
show me a good arabic restaurant in mountain view ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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;
|
give me a good arabic in mountain view ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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;
|
give me a good arabic restaurant in mountain view ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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;
|
give me a good place in mountain view for arabic food ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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;
|
where are some good arabics in mountain view ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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;
|
where is a restaurant in mountain view that serves good arabic food ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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;
|
what are some good restaurants in mountain view for arabic food ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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;
|
give me some restaurants good for arabic food in mountain view ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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;
|
where can i eat some good arabic food in mountain view ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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;
|
give me some good places for arabic in mountain view ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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;
|
where is a good arabic in mountain view ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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;
|
give me a restaurant in mountain view that serves good arabic food ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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;
|
give me some good arabic restaurants in mountain view ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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;
|
where are some good places for arabic in mountain view ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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;
|
give me some good arabics in mountain view ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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;
|
give me a good restaurant in mountain view for arabic food ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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;
|
where is a good arabic restaurant in mountain view ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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;
|
what are some good places for arabic in mountain view ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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;
|
where is a good restaurant in mountain view for arabic food ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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;
|
where is a good place in mountain view for arabic food ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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";
|
where can i find a jamerican cuisine in san francisco ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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";
|
where is jamerican cuisine in san francisco ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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";
|
where is a jamerican cuisine in san francisco ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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" );
|
where can we find some restaurants in the bay area ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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" );
|
give me some restaurants in the bay area ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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" );
|
give me a restaurant in the bay area ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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" );
|
where can i find a restaurant in the bay area ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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;
|
give me a good restaurant in the bay area ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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;
|
what are some good restaurants in the bay area ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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;
|
give me some good restaurants in the bay area ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
restaurants
|
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;
|
what is a good restaurant in the bay area ?
|
[Schema (values) (types)]: | restaurants | GEOGRAPHIC : city_name (text) , county (text) , region (text) | RESTAURANT : id (text) , name (text) , food_type (text) , city_name (text) , rating (number) | LOCATION : restaurant_id (text) , house_number (text) , street_name (text) , city_name (text);
|
[Primary Keys]: geographic : city_name, restaurant : id, location : restaurant_id
|
[Foreign Keys]: restaurant : city_name = geographic : city_name | location : city_name = geographic : city_name
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.