I am developing an application using servlet and jdbc using mysql database.
Here I have to move one table data into other table in every month end(lets say 30th)
visitorlog
id name date
1 XYZ 02-10-2016
visitorloghistory
id name date
Here I have to move all data of visitorlog into visitorloghistory in each month end, and need to remove data from visitorlog.
I have no idea how to do this.
Thanks in advance.