1. what are AR associations? In Rails, an association is a connection between two Active Record models. Associations make common operations simpler and easier in your code. class Movie < ApplicationRecord
has_many :actors
end has_many is a typical AR association. The common associations are has_one, has_many, belongs_to, has_one_through, has_many_through... 2. Understanding associations in a SQL perspective