I have data in a table in following manner
tablename : history
page_url verified day
------------------------------------------
some_url1 true 2012-06-25
some_url2 true 2012-06-24
some_url1 false 2012-06-25
some_url2 false 2012-06-24
This is like using the day field values as field names in another table
I need the output in the following manner :
page_url 2012-06-25 2012-06-24
------------------------------------------------
some_url1 true false
some_url2 true false
Is it possible by using pl/sql or stored procedures ??