why the sql_text column in v$sqltext table is shown in the inverse way?

insert of:
sql_text
--------------
select name from blahh
where cod = 5;

it is this way:
sql_text
--------------
where cod = 5;
select name from blahh



F.