Batch Processing in SQL mode

  • Goal: I have a table that is referencing a view in my SQL database. I have a calculated column that is a boolean field in this table. I have the field setup as editable in the table. so someone can check and uncheck people using that one checkbox.

I would like, when the user clicks save, for each of those keys selected to run a stored procedure on the server.

Hi @Shegs,

The where IN logic varies depending on your specific SQL type. We have a cheatsheet here :crossed_fingers: hope it helps!

I also see that you chatted with my teammate internally & he submitted a feature request on your behalf :slightly_smiling_face:

@Shegs have you considered using a Javascript loop to trigger your stored procedure for each selected item?

2 Likes

this is what I ended up doing.