mysql - Is it yet possible to directly fill the paremeters of a Procedure from a SELECT? -
i know wasn't option before, there has been several versions of mysql since last worked it, , seems should have been resolved.
take example:
table_justbecause
id, turns, thejobid, a, x, y, z
and procedure calls with:
p_somethingtodo(theid int unsigned
, turns smallint
, jobid int unsigned
, smallint unsigned
, x smallint
, y smallint
, z int
)
is there simpler method pulling entire select out variables each value , putting them in through statement?
there should way.
Comments
Post a Comment