What I am trying to do:
I have a blog and want to show related posts below the main post.
class Post < ActiveRecord::Base has_many :related_pos
You're looking for self referential association.
I suggest you take inspiration here.