Delete in Postgres Node

Hello , I am trying out workflow from google sheet to postgres and i realized that n8n postgres node does not have delete option.

May i know if there is anyway to delete unwanted records from postgres database?

You can do that with operation “Execute Query” and then use a query like the following:

DELETE FROM public.myTabe where id = 1;

oh yah… thank you…

You are welcome, have fun!