I need to run a remove_user function 1000s of times in single postgres query with a different values. I have created the statements.
Currently If I select all still only executes first line. I am using PGadmin.
SELECT public.remove_user(56);
SELECT public.remove_user(57);
SELECT public.remove_user(58);
SELECT public.remove_user(59);
SELECT public.remove_user(60);
SELECT public.remove_user(61);