Skip to content

Instantly share code, notes, and snippets.

@duderman
Created June 10, 2016 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save duderman/cb93f37f6de73acc01b8accce0628970 to your computer and use it in GitHub Desktop.
Save duderman/cb93f37f6de73acc01b8accce0628970 to your computer and use it in GitHub Desktop.
SHOPS
| id | name | address |
-------------------------------
| 1 | 7Eleven | 1, some st |
| 2 | Wallmart | 2, other st |
Goods
| id | shop_id | name |
-------------------------
| 1 | 1 | Pepsi |
| 2 | 1 | Lays |
| 3 | 2 | Carrot |
| 4 | | iPhone |
@duderman
Copy link
Author

duderman commented Jun 10, 2016

| id | shop_id |  name  | shop_name |
-------------------------------------
|  1 |    1    | Pepsi  | 7Eleven   | 
|  2 |    1    |  Lays  | 7Eleven   |
|  3 |    2    | Carrot | Wallmart  |
|  4 |         | iPhone |           |

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment