I want to write a SQL query to bulk delete rows that are selected using the table widget.
My query would look something like
DELETE FROM standup_updates WHERE id IN (seletedId1, selectedId2,selectedId3,....)
According to how many table rows are selected ids would increase or decrease.
{{Table1.selectedRows}}
gives an array of a stringified object but I am not sure how can i use it to form above mentioned query.