use of order by in insert statement
Sachin TOct 15 2009 — edited Oct 15 2009Hi friends,
I am working on a system where i have observed that it is using order by clause in insert statement for GTT.
eg.
insert into t_gtt values select a,b,c from t1 order by a;
What i know is that records are not fetched in order by which they are inserted.
What is use of order by in insert.
Could you please help me