मुझे नहीं पता कि आपको वह वाक्य-विन्यास कहां मिला, जाहिर तौर पर मैनुअल<में नहीं है। /ए> . जैसा कि आप देख सकते हैं वहां
विभाजन create table .. as partition of
. का उपयोग करके बनाए जाते हैं पोस्टग्रेज में:
तालिका को परिभाषित करें:
CREATE TABLE countrymeasurements
(
countrycode int NOT NULL,
countryname character varying(30) NOT NULL,
languagename character varying (30) NOT NULL,
daysofoperation character varying(30) NOT NULL,
salesparts bigint,
replaceparts bigint
)
PARTITION BY LIST(countrycode);
विभाजन को परिभाषित करें:
create table india
partition of countrymeasurements
for values in (1);
create table japan
partition of countrymeasurements
for values in (2);
create table china
partition of countrymeasurements
for values in (3);
create table malaysia
partition of countrymeasurements
for values in (4);