i am looking for a way to call a HTTP request(web-hook) from MySQL when any field is updated in a table.
Is there a way to do it using MySQL function or trigger?
i am looking for a way to call a HTTP request(web-hook) from MySQL when any field is updated in a table.
Is there a way to do it using MySQL function or trigger?
I don't think that you can call HTTP request from MySql,
but you can use calling scripts from triggers with UDF. I think that it possible since MySql 5.5 ... but please check and verify
https://dev.mysql.com/doc/refman/5.7/en/faqs-triggers.html#faq-mysql-can-triggers-udf
Invoking a PHP script from a MySQL trigger
and then you will invoke some code and there you will make the HTTP request or what ever you need.