Guest User

Untitled

a guest
Jul 22nd, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. mysql> show create table recipe\G
  2. *************************** 1. row ***************************
  3. Table: recipe
  4. Create Table: CREATE TABLE `recipe` (
  5. `RecipeId` int(11) NOT NULL,
  6. `Source` varchar(60) DEFAULT NULL,
  7. `Comments` varchar(255) DEFAULT NULL,
  8. `name` varchar(100) DEFAULT NULL,
  9. `numServings` int(11) DEFAULT NULL,
  10. PRIMARY KEY (`RecipeId`)
  11. ) ENGINE=InnoDB DEFAULT CHARSET=latin1
  12. 1 row in set (0.00 sec)
  13.  
  14. mysql> SELECT quantity, name FROM ingredientList INNER JOIN ingredientList.ingre
  15. dient ON ingredientList.ingredientId = ingredient.ingredientId;
  16. ERROR 1146 (42S02): Table 'ingredientlist.ingredient' doesn't exist
Add Comment
Please, Sign In to add comment