java_data_lineage/doc/cn/rt_unpivot_table.md

17 lines
274 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## Show ResultSet Typesunpivot_table
oracle
```
select * from pivot_sales_data
unpivot(
amount for month in (jan, feb, mar, apr)
)
order by prd_type_id;
```
显示前:
![png](../images/rt_unpivot_table_01.png)
显示后:
![png](../images/rt_unpivot_table_02.png)