Hi All,
Please let me know how to copy one table to another table using sql stored procedure.
Let consider following example you have 2 batch A, B.A is your main batch and you want to copy module from A to B(Child batch).
Before copy both the batches have the following content uploaded in these batch
Table A
Session Content
1 Video1
2 Video2
3 Video3
4 Video4 Table B
Session Content
1 Abc
2 xyz
3
4
After Copy module your child batch content will be
Table B
Session Content
1 Video1
2 Video2
3 Video3
4 Video4
Karthik