I have a requirement to get the data from MYSQL table, The table has date column.
Based on date filter condition i need to do the multi threading and insert into other tables.
For example,
Source MYSQL Table(Order)
I need to select * from Order where last_date >= '?'(this date should be passed via from mult threading loops)
From this output ,load/insert into another table lets say(Order1)
Please help me with some sample code.
How about this?