844
JSON Query Language (programming.dev)
you are viewing a single comment's thread
view the rest of the comments
[-] ColonelThirtyTwo@pawb.social 20 points 2 months ago

SQL blows for hierarchical data though.

Want to fetch a page of posts AND their tags in normalized SQL? Either do a left join and repeat all the post values for every tag or do two round-trip queries and manually join them in code.

If you have the tags in a JSON blob on the post object, you just fetch and decide that.

[-] blackstrat@lemmy.fwgx.uk 7 points 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.

[-] mousetail@programming.dev 3 points 2 months ago

It's entirely possible to sort and filter inside JSON data in most SQL dialects. You can even add indexes.

load more comments (5 replies)
load more comments (11 replies)
this post was submitted on 27 Jul 2024
844 points (97.8% liked)

Programmer Humor

19315 readers
39 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 1 year ago
MODERATORS