Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 274 Bytes

File metadata and controls

17 lines (13 loc) · 274 Bytes

Show ResultSet Types:unpivot_table

oracle

select * from pivot_sales_data
unpivot(
amount for month in (jan, feb, mar, apr)
)
order by prd_type_id;

显示前:

png

显示后:

png