I have a single table with 2 emp_id and its data inside.Now I want to duplicate the dataset.
emp_id (varchar(13)) emp_name
-------------------- --------
0011275286 manu
0011275290 Anush
starting serious 005....01(its length should be only 13) and then say we have to generate 5 duplicates for each loans..Now it should start with this series and then the data corressponding will be the duplicated the same...The result after the script runs should be as shown below...
emp_id (varchar(13)) emp_name
-------------------- --------
0011275286 manu
0011275290 Anush
005.....01 manu
005.....02 manu
005.....03 manu
005.....04 manu
005.....05 Anush
005.....06 Anush
005.....07 Anush
005.....08 Anush
Please help me out its urgent...
emp_id (varchar(13)) emp_name
-------------------- --------
0011275286 manu
0011275290 Anush
starting serious 005....01(its length should be only 13) and then say we have to generate 5 duplicates for each loans..Now it should start with this series and then the data corressponding will be the duplicated the same...The result after the script runs should be as shown below...
emp_id (varchar(13)) emp_name
-------------------- --------
0011275286 manu
0011275290 Anush
005.....01 manu
005.....02 manu
005.....03 manu
005.....04 manu
005.....05 Anush
005.....06 Anush
005.....07 Anush
005.....08 Anush
Please help me out its urgent...