Starting MySQL with a SELECT Statement

I want to make a trigger that has a SELECT statement in it, but the SELECT query returns more than one row, so how can I handle multiple rows in triggers and loops that are built in MySql?

Please help me. : Jimit

+2


a source to share


1 answer


It depends on what you want to do with the results SELECT

, but the most general approach would be to use cursor .



+4


a source







All Articles