Inserting data into a table from a procedure

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());

      

+3


source to share





All Articles