If your goal is to send loop data to a database so that you have a record (a row) for each loop member, you should do things:
- Split up your database into 2+ tables, where one table holds non-loop data and another holds loops data; and
- Use an Iterator Block outside of your Loop to perform a "send data" function over each loop member.
Quick demo
How it works