Mutiple row Deletion

How can I delete multiple rows from my table at same time?

Hi @Naveen_Reddy !

Could you give us some more information about what type of datasource you are trying to delete multiple rows from?

My datasource is PostgreSQL.

@Naveen_Reddy you can add an SQL statement like
delete from table where id = ANY ( {{Table1.selectedRows.map((row) => row.id)}} )

Thanks, @Nikhil it is working.