Hi,
I have the following data in a table called staging, and it is in the format. C1,C2 and C3 are column Headers.
C1 C2 C3
41 te cc
51 te cc
42 te cc
41 te cc
51 te cc
42 te cc
41 te cc
51 te cc
42 te cc
Now from this staging table i want to insert into another temp table in the same order but i want to insert row42 after row41. Can you help me with the query? I appreciate your help
The result should be
C1 C2 C3
41 te cc
42 te cc
51 te cc
41 te cc
42 te cc
51 te cc
41 te cc
42 te cc
51 te cc