1test=# SELECT * FROM customer_hash PARTITION (p1);
2 customer_id | customer_name | email | phone
3-------------+---------------+------------------------+------------
4 4 | Customer_4 | customer4@example.com | 1234567004
5 7 | Customer_7 | customer7@example.com | 1234567007
6 10 | Customer_10 | customer10@example.com | 1234567010
7 12 | Customer_12 | customer12@example.com | 1234567012
8 16 | Customer_16 | customer16@example.com | 1234567016
9
10test=# SELECT * FROM customer_hash PARTITION (p4);
11 customer_id | customer_name | email | phone
12-------------+---------------+------------------------+------------
13 2 | Customer_2 | customer2@example.com | 1234567002
14 6 | Customer_6 | customer6@example.com | 1234567006
15 11 | Customer_11 | customer11@example.com | 1234567011
16 13 | Customer_13 | customer13@example.com | 1234567013
17 17 | Customer_17 | customer17@example.com | 1234567017
18 18 | Customer_18 | customer18@example.com | 1234567018
19 19 | Customer_19 | customer19@example.com | 1234567019