How can I displaying multiple records in one row in oracle without creating a stored procedure?
Data Set:
Name Job Update_date Armstrong IDE 07/02/2014 Armstrong IDE 05/02/2015 Armstrong IDEC 03/02/2016 Armstrong LT 14/02/2016 Beyonce LT 12/02/2015 Beyonce LTC 12/02/2016 Deadpool LT 05/02/2015 Desired Result:
Name IDE IDEC LT LTC Armstrong 05/02/2015 03/02/2016 14/02/2016 null Beyonce null null 12/02/2015 12/02/2016 Deadpool null null 05/02/2015 null For each job I must have the biggest dates
The solution I see is to create a temporary table by Job and make union with name!!