Partitioning एक बड़ी table को एक column के value के आधार पर छोटे physical टुकड़ों (partitions) में विभाजित करता है — जबकि यह queries के लिए अभी भी एक logical table के रूप में दिखाई देता है। यह database को केवल relevant partitions को scan या maintain करने देकर बहुत बड़ी tables के लिए performance और manageability में सुधार करता है।
Partitioning कैसे काम करता है
orders (id , order_date , amount )
(order_date);
orders_2023 orders
() ();
orders_2024 orders
() ();
