Tulis SQL di Ruby on Rails

sql = "Select * from ... your sql query here"
records_array = ActiveRecord::Base.connection.execute(sql)
Lioruby