Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View EthanML's full-sized avatar

Ethan Lowry EthanML

  • Belfast, Northern Ireland
View GitHub Profile
@ProGM
ProGM / arel_cheatsheet_on_steroids.md
Last active April 19, 2024 04:06
Arel cheatsheet on Steroids

Arel Cheatsheet on Steroids

A (more) complete cheatsheet for Arel, including NamedFunction functions, raw SQL and window functions.

Tables

posts = Arel::Table.new(:posts)
posts = Post.arel_table # ActiveRecord

Table alias