Can anyone please tell me what's wrong with the following query? I'm using TOAD
SELECT *
FROM bin_data
UNPIVOT (
direction
FOR bin_data
IN (bin_1_data, bin_2_data, bin_3_data)
);
I'm getting the following error:
ORA-00933: SQL command not properly ended
Thanks
PS: Its oracle 10g database
Edited by: thinkingeye on Aug 27, 2010 10:43 AM