• blackstrat@lemmy.fwgx.uk
    link
    fedilink
    arrow-up
    0
    ·
    2 months ago

    I’m no expert in JSON, but don’t you lose the ability to filter it before your application receives it all? If you had a reasonable amount of data then in SQL you can add WHERE clause and cut down what you get back so you could end up processing a lot less data than in your JSON example, even with the duplicated top table data. Plus if you’re sensible you can ensure you’re not bringing back more fields than you need.

    • Ephera@lemmy.ml
      link
      fedilink
      arrow-up
      0
      ·
      2 months ago

      In a traditional SQL database, yeah. In various document-oriented (NoSQL) databases, though, you can do that.