In the following block of code, on what line is the SQL actually executed on the database?
first_name, last_name = @name.split(", ")
people = Person.where(first_name: first_name)
people = people.limit(5)
people.each do |person|
puts person
end
Thanks