My query is:
select * from (
select
aa_id, abc_metric, abc_value from TABLE1)
PIVOT(
min(abc_value)
FOR abc_metric IN ('Mode (numbers & dates)')
);
In abc_metric, I have a value called as Mode (numbers & dates)
but SQL developer is asking me value of dates.
How can I make the query work?