How can you insert data from a stored procedure into a table?
I want to do something like this:
INSERT INTO test
CALL test30day(NOW() - INTERVAL 30 DAY, NOW());
How can you insert data from a stored procedure into a table?
I want to do something like this:
INSERT INTO test
CALL test30day(NOW() - INTERVAL 30 DAY, NOW());