… 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.