this post was submitted on 15 Feb 2024
122 points (96.9% liked)

Programming

17279 readers
440 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities [email protected]



founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 22 points 8 months ago* (last edited 8 months ago) (2 children)

Stage 5 can give you a huge boost in writing complex queries!

You say that like it's a good thing. I like my queries simple.

Also - the stuff you have under "stage 6" should all be learned before "stage 2" in my opinion. Knowing how to write efficient queries is far more important than group by / join / etc.

[–] [email protected] 13 points 8 months ago (1 children)

Huh? How do you write an efficient query and not take into account joins? A single table query? Are you a Prisma fan?

[–] [email protected] 8 points 8 months ago

Are you a Prisma fan?

Ooooh, that's a good burn

[–] [email protected] 3 points 8 months ago* (last edited 8 months ago)

Joining is one of the simplest and most useful things in SQL.

How can you possibly query without it?

Simple queries are obviously better but not everything can be achieved with simple selects.