Écrivez SQL dans Ruby sur Rails

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