We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In restaurant.sql:
restaurant.sql
... CREATE TABLE IF NOT EXISTS "RESTAURANT" ( "ID" int, "NAME" text, "FOOD_TYPE" text, "CITY_NAME" text, "RATING" real, primary key("ID"), foreign key ("CITY_NAME") references `GEOGRAPHIC`("CITY_NAME") ); CREATE TABLE IF NOT EXISTS "LOCATION" ( "RESTAURANT_ID" int, ... foreign key ("RESTAURANT_ID") references `RESTAURANT`("RESTAURANT_ID") );
RESTAURANT_ID is not present in the RESTAURANT table
RESTAURANT_ID
RESTAURANT
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In
restaurant.sql
:RESTAURANT_ID
is not present in theRESTAURANT
tableThe text was updated successfully, but these errors were encountered: