Michael Chaney Profile picture
Aug 23 1 tweets 2 min read Read on X
Okay, @rails kids, let's talk briefly about merging queries. I never cease to be amazed at just how utterly awesome active record is.

> query1 = Track.where("tracks.bpm > 100").select(:id, :title)
> query2 = Track.with(irish_tracks:
Track.where("description ilike '%irish%'")
.joins("JOIN irish_tracks ON irish_tracks.id=")
.select(:id, :title, :description)

Okay, a bit contrived, but so far so good.

Let's talk about this. "query1" will find tracks where the bpm is greater than 100, and it selects the "id" and "title". "query2" uses a fancy "with" clause (aka "common table expression") to find all tracks that have "Irish" in the description. It joins this with tracks and selects only the "id", "title", and "description" fields.

So, what happens if I merge them? Exactly what should happen:

> puts query1.merge(query2).to_sql
WITH "irish_tracks" AS (SELECT "tracks".* FROM "tracks" WHERE (description ilike '%irish%'))
SELECT "tracks"."id", "tracks"."title", "tracks"."description"
FROM "tracks"
JOIN irish_tracks on irish_tracks.id=
WHERE (tracks.bpm > 100)

It merges every single aspect of these two queries.

I've been using @rails for almost 20 years now and I'll never cease to be amazed, surprised, etc. for all of this.

I have a friend who's been a dev longer than I have, uses Java, and just can't understand why the active record pattern is better than his simple use of straight SQL. He doesn't put together queries like I do.tracks.id
tracks.id

• • •

Missing some Tweet in this thread? You can try to force a refresh
 

Keep Current with Michael Chaney

Michael Chaney Profile picture

Stay in touch and get notified when new unrolls are available from this author!

Read all threads

This Thread may be Removed Anytime!

PDF

Twitter may remove this content at anytime! Save it as PDF for later use!

Try unrolling a thread yourself!

how to unroll video
  1. Follow @ThreadReaderApp to mention us!

  2. From a Twitter thread mention us with a keyword "unroll"
@threadreaderapp unroll

Practice here first or read more on our help page!

Did Thread Reader help you today?

Support us! We are indie developers!


This site is made by just two indie developers on a laptop doing marketing, support and development! Read more about the story.

Become a Premium Member ($3/month or $30/year) and get exclusive features!

Become Premium

Don't want to be a Premium member but still want to support us?

Make a small donation by buying us coffee ($5) or help with server cost ($10)

Donate via Paypal

Or Donate anonymously using crypto!

Ethereum

0xfe58350B80634f60Fa6Dc149a72b4DFbc17D341E copy

Bitcoin

3ATGMxNzCUFzxpMCHL5sWSt4DVtS8UqXpi copy

Thank you for your support!

Follow Us!

:(