SimonSellick
Programmer
Hi,
My stored procedure attempts to insert from a query, along these lines:
The insert runs correctly in a MySQL window but within the procedure it fails and I cannot get at the errorno and message (actually, that is probably the real question - are they accessible within a stored procedure?).
Any pointers gratefully received.
Simon.
My stored procedure attempts to insert from a query, along these lines:
Code:
insert into a (a, b, c)
select 'a', b, c
from b
order by b;
Any pointers gratefully received.
Simon.