I have a postgres function which takes an integer, like this:
select public.delete_entry(value);
How can I call this multiple times passing different values? I have a list of 280 values, so I need to execute this 280 times, I could just go one by one and execute the function each time but I bet there's a better way
Thanks,