I have created a table with partition on ID columnPARTITION BY RANGE_N(EmpId BETWEEN 1 AND 10 EACH 1 );
. I want to check specific partition data.
For example partition 1 total number of rows 10, partition 2 total rows 5. is there a way to check this in teradata.
Partition_No row_count
P1 10
P2 5
P3 20