Quantcast
Channel: MySQL Performance Blog » Search Results » mysql 5.5 vs 5.6
Viewing all articles
Browse latest Browse all 73

Post: Schema Design in MongoDB vs Schema Design in MySQL

$
0
0

… keys for clarity – MongoDB supports indexes but not foreign keys): mysql> select * from people; +—-+————+ | id | name | +—-+————+ | 1 | Stephane | | 2 | John | | 3… | +—-+————+ mysql> select * from passports; +—-+———–+———+————-+ | id | people_id | country | valid_until | +—-+———–+———+————-+ | 4 | 1 | FR | 2020-01-01 | | 5 | 2 | US | 2020-01-01 | | 6

The post Post: Schema Design in MongoDB vs Schema Design in MySQL appeared first on MySQL Performance Blog.


Viewing all articles
Browse latest Browse all 73

Trending Articles