Hi, I have a question regarding the functions. There is scenario that I want to update one table(EX: profile), and after that I want to delete one row in another table(todo). Both table have no reference to each other. Is there a way to do it in function triggers ? Like when I call update profile in code can pass some arguments which is not belongs to update profile logic, but can be used in the function to delete one row in todo.(pass todo id)
or I have to update profile and delete one row in todo table from code ?
thanks