From 24ba1e860dcb1352a6420979065d9f4de572eb66 Mon Sep 17 00:00:00 2001 From: spaceoddity91719 Date: Fri, 24 Nov 2023 17:02:31 +0800 Subject: [PATCH 1/2] =?UTF-8?q?update(mogdb):=E5=88=86=E5=8C=BA=E8=A1=A8?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2sql=E8=AF=AD=E6=B3=95=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../sql-reference/partition-table.md | 2496 ++++++++--------- .../sql-reference/partition-table.md | 92 +- .../sql-reference/partition-table.md | 22 +- .../sql-reference/partition-table.md | 18 +- 4 files changed, 1314 insertions(+), 1314 deletions(-) diff --git a/product/en/docs-mogdb/v5.0/reference-guide/sql-reference/partition-table.md b/product/en/docs-mogdb/v5.0/reference-guide/sql-reference/partition-table.md index 36c4a364..fad0ea6e 100644 --- a/product/en/docs-mogdb/v5.0/reference-guide/sql-reference/partition-table.md +++ b/product/en/docs-mogdb/v5.0/reference-guide/sql-reference/partition-table.md @@ -1,1249 +1,1249 @@ ---- -title: Partitioned Tables -summary: Partitioned Tables -author: zhang cuiping -date: 2023-04-07 ---- - -# Partitioned Tables - -If a table contains a large amount of data, data query and operation efficiency will be severely affected. MogDB can logically divide a table into multiple shards to avoid processing a large amount of data at a time and then improve the processing efficiency. - -MogDB supports the following types of partitioned tables: - -- [Range partitioned table](#Syntax for Creating a VALUES LESS THAN Range Partitioned Table): One or more columns are divided into multiple ranges. A partition is created for each range to store data. For example, sales data can be partitioned by month. -- [List partitioned table](#Syntax for Creating a List Partitioned Table): Partitions are created based on values in a column. For example, sales data is divided by sales store. -- [Interval partitioned table](#Syntax for Creating an Interval Partitioned Table): It is a special type of range partitions. The interval value definition is added. If no matched partition is found when a record is inserted, partitions can be automatically created based on the interval. -- [Hash partitioned table](#Syntax for Creating a Hash Partitioned Table): The modulus and remainder are specified for each partition based on a column of the table, and the records to be inserted into the table are allocated to the corresponding partitions. - -In addition to creating a partitioned table, you can perform the following operations: - -- [Querying a partitioned table](#Syntax for Querying a Partitioned Table): Data is queried by partition name or value in a partition. -- [Importing data](#Syntax for Importing Data): Data is imported directly or from an existing table. -- [Modifying a partitioned table](#Syntax for Modifying a Partitioned Table): Partitions are added, deleted,split, or combined, or partition names are changed. -- [Deleting a partitioned table](#Syntax for Deleting a Partitioned Table): The operation is the same as that of deleting a common table. - -## Classification of Range Partitioned Tables - -Range partitioned tables are classified into the following types: - -- [VALUES LESS THAN](#Syntax for Creating a VALUES LESS THAN Range Partitioned Table):specifies the partition range based on the upper limit of each partition. Upper limit of the previous partition ≤ Range of the partition ≤ Upper limit of the current partition. -- [START END](#Syntax for Creating a START END Range Partitioned Table):Partitioning is performed in the following methods. - - [START(partition_value) END (partition_value | MAXVALUE)](#se); - - [START(partition_value)](#s); - - [END(partition_value | MAXVALUE)](#e) - - [START(partition_value) END (partition_value) EVERY (interval_value)](#see) - - Comprehensively using the preceding methods - -## Syntax for Creating a VALUES LESS THAN Range Partitioned Table - -``` -CREATE TABLE partition_table_name -( [column_name data_type ] - [, ... ] -) - PARTITION BY RANGE (partition_key) - ( - PARTITION partition_name VALUES LESS THAN (partition_value | MAXVALUE}) - [, ... ] - ); -``` - -## Parameters for Creating a VALUES LESS THAN Range Partitioned Table - -- **partition_table_name** - - Specifies the name of the partitioned table. - -- **column_name** - - Specifies the name of the column to be created in the new table. - -- **data_type** - - Specifies the data type of the column. - -- **partition_key** - - Specifies the name of the partition key. - - In this case, a maximum of four partition keys are supported. - -- **partition_name** - - Specifies the name of a range partition. - -- **VALUES LESS THAN** - - Specifies that the value in the partition must be less than the upper limit value. - -- **partition_value** - - Specifies the upper limit of a range partition, and the value depends on the type specified by **partition_key**. - -- **MAXVALUE** - - Specifies the upper limit of the last range partition. - -## Example of Creating a VALUES LESS THAN Range Partitioned Table - -Example 1: Create the **sales_table** range partitioned table. The table has four partitions and the data type of their partition keys is DATE. The range of the partition is as follows: **sales_date** < 2021-04-01, 2021-04-01 ≤ **sales_date** < 2021-07-01, 2021-07-01 ≤ **sales_date** < 2021-10-01, and 2021-10-01 ≤ **sales_date** < **MAXVALUE**. - -```sql --- Create the sales_table partitioned table. -MogDB=# CREATE TABLE sales_table -( - order_no INTEGER NOT NULL, - goods_name CHAR(20) NOT NULL, - sales_date DATE NOT NULL, - sales_volume INTEGER, - sales_store CHAR(20) -) -PARTITION BY RANGE(sales_date) -( - PARTITION season1 VALUES LESS THAN('2021-04-01 00:00:00'), - PARTITION season2 VALUES LESS THAN('2021-07-01 00:00:00'), - PARTITION season3 VALUES LESS THAN('2021-10-01 00:00:00'), - PARTITION season4 VALUES LESS THAN(MAXVALUE) -); --- Insert data into the season1 partition. -MogDB=# INSERT INTO sales_table VALUES(1, 'jacket', '2021-01-10 00:00:00', 3,'Alaska'); - --- Insert data into the season2 partition. -MogDB=# INSERT INTO sales_table VALUES(2, 'hat', '2021-05-06 00:00:00', 5,'Clolorado'); - --- Insert data into the season3 partition. -MogDB=# INSERT INTO sales_table VALUES(3, 'shirt', '2021-09-17 00:00:00', 7,'Florida'); - --- Insert data into the season4 partition. -MogDB=# INSERT INTO sales_table VALUES(4, 'coat', '2021-10-21 00:00:00', 9,'Hawaii'); -``` - -## Syntax for Querying a Partitioned Table - -``` -SELECT * FROM partition_table_name PARTITION { ( partition_name ) | FOR ( partition_value [, ...] ) } -``` - -## Parameters for Querying a Partitioned Table - -- **partition_table_name** - - Specifies the name of the partitioned table. - -- **partition_name** - - Specifies the partition name. - -- **partition_value** - - Specifies the value of the partition. The partition where the value specified by the **PARTITION FOR** clause is located is the partition to be queried. - -## Example of Querying a Partitioned Table - -Example 2: Query the **sales_table** partitioned table created in example 1. - -```sql --- Query data in the sales_table table. -MogDB=# SELECT * FROM sales_table; - order_no | goods_name | sales_date | sales_volume | sale -s_store -----------+----------------------+---------------------+--------------+--------- -------------- - 1 | jacket | 2021-01-10 00:00:00 | 3 | Alaska - - 2 | hat | 2021-05-06 00:00:00 | 5 | Clolorado - - 3 | shirt | 2021-09-17 00:00:00 | 7 | Florida - - 4 | coat | 2021-10-21 00:00:00 | 9 | Hawaii - -(4 rows) - --- Query the data of the fourth quarter in the sales_table table. sales_table PARTITION (season4) is used to reference the partition where the data of the fourth quarter is located. -MogDB=# SELECT * FROM sales_table PARTITION (season4); - order_no | goods_name | sales_date | sales_volume | sales_store -----------+----------------------+---------------------+--------------+---------------------- - 4 | coat | 2021-10-21 00:00:00 | 9 | Hawaii -(1 row) - --- Query the data of the first quarter in the sales_table table. sales_table PARTITION FOR ('2021-3-21 00:00:00') is used to reference the partition where the data of the first quarter is located. '2021-3-21 00:00:00' is located in the partition where the data of the first quarter is located. -MogDB=# SELECT * FROM sales_table PARTITION FOR ('2021-3-21 00:00:00'); - order_no | goods_name | sales_date | sales_volume | sales_store -----------+----------------------+---------------------+--------------+---------------------- - 1 | jacket | 2021-01-10 00:00:00 | 3 | Alaska -(1 row) -``` - -## Syntax for Creating a START END Range Partitioned Table - -A START END range partitioned table can be created by different methods, and these methods can be combined within a partitioned table. - -- Method 1: By executing **START(partition_value) END (partition_value | MAXVALUE)** - - ``` - CREATE TABLE partition_table_name - ( [column_name data_type ] - [, ... ] - ) - PARTITION BY RANGE (partition_key) - ( - PARTITION partition_name START(partition_value) END (partition_value | MAXVALUE) - [, ... ] - ); - ``` - -- Method 2: By executing **START(partition_value)** - - ``` - CREATE TABLE partition_table_name - ( [column_name data_type ] - [, ... ] - ] ) - PARTITION BY RANGE (partition_key) - ( - PARTITION partition_name START(partition_value) - [, ... ] - ); - ``` - -- Method 3: By executing **END(partition_value | MAXVALUE)** - - ``` - CREATE TABLE partition_table_name - ( [column_name data_type ] - [, ... ] - ] ) - PARTITION BY RANGE (partition_key) - ( - PARTITION partition_name END(partition_value | MAXVALUE) - [, ... ] - ); - ``` - -- Method 4: By executing **START(partition_value) END (partition_value) EVERY (interval_value)** - - ``` - CREATE TABLE partition_table_name - ( [column_name data_type ] - [, ... ] - ] ) - PARTITION BY RANGE (partition_key) - ( - PARTITION partition_name START(partition_value) END (partition_value) EVERY (interval_value) - [, ... ] - ); - ``` - -## Parameters for Creating a START END Range Partitioned Table - -- **partition_table_name** - - Specifies the name of the partitioned table. - -- **column_name** - - Specifies the name of the column to be created in the new table. - -- **data_type** - - Specifies the data type of the column. - -- **partition_key** - - Specifies the name of the partition key. - - In this case, only one partition key is supported. - -- **partition_name** - - Specifies the name or prefix of the range partition. - - - If the definition is in the **START(partition_value) END (partition_value) EVERY (interval_value)** clause and the value of **partition_name** is **p1**, the partition names are **p1_1**, **p1_2**, and so on. - - For example, if **PARTITION p1 START(1) END(4) EVERY(1)** is defined, the generated partitions are [1, 2), [2, 3), and [3, 4), and their names are **p1_1**, **p1_2**, and **p1_3**. In this case, **p1** is a name prefix. - - - If the defined statement is in the first place and has **START** specified, the range (*MINVALUE*, **START**) will be automatically used as the first actual partition, and its name will be **p1_0**. The other partitions are then named **p1_1**, **p1_2**, and so on. - - For example, if **PARTITION p1 START(1), PARTITION p2 START(2)** is defined, generated partitions are (*MINVALUE*, 1), [1, 2), and [2, *MAXVALUE*), and their names will be **p1_0**, **p1_1**, and **p2**. In this case, **p1** is a name prefix and **p2** is a partition name. **MINVALUE** indicates the minimum value. - - - In other cases, this parameter specifies the range partition name. - -- **VALUES LESS THAN** - - Specifies that the value in the partition must be less than the upper limit value. - -- **partition_value** - - Specifies the endpoint value (start or end point) of the range partition. The value depends on the type specified by **partition_key**. - -- **interval_value** - - Splits the range specified by **[START, END)** and specifies the width of each partition after splitting. If the value of **(END-START)** cannot be exactly divided by the value of **EVERY**, only the width of the last partition is less than the value of **EVERY**. - -- **MAXVALUE** - - Specifies the upper limit of the last range partition. - -## Example of Creating a START END Range Partitioned Table - -Example 3: Execute **START(partition_value) END (partition_value | MAXVALUE)** to create a START END partitioned table named **graderecord**. There are three partitions, and their partition keys are of the INTEGER type. The partition ranges are as follows: 0 ≤ **grade** < 60, 60 ≤ **grade** < 90, and 90 ≤ **grade** < **MAXVALUE**. - -```sql --- Create the graderecord partitioned table. -MogDB=# CREATE TABLE graderecord - ( - number INTEGER, - name CHAR(20), - class CHAR(20), - grade INTEGER - ) - PARTITION BY RANGE(grade) - ( - PARTITION pass START(60) END(90), - PARTITION excellent START(90) END(MAXVALUE) - ); - --- Insert data into the partition. -MogDB=# insert into graderecord values('210101','Alan','21.01',92); -MogDB=# insert into graderecord values('210102','Ben','21.01',62); -MogDB=# insert into graderecord values('210103','Brain','21.01',26); -MogDB=# insert into graderecord values('210204','Carl','21.02',77); -MogDB=# insert into graderecord values('210205','David','21.02',47); -MogDB=# insert into graderecord values('210206','Eric','21.02',97); -MogDB=# insert into graderecord values('210307','Frank','21.03',90); -MogDB=# insert into graderecord values('210308','Gavin','21.03',100); -MogDB=# insert into graderecord values('210309','Henry','21.03',67); -MogDB=# insert into graderecord values('210410','Jack','21.04',75); -MogDB=# insert into graderecord values('210311','Jerry','21.04',60); - --- Query data in the graderecord table. -MogDB=# SELECT * FROM graderecord; - number | name | class | grade ---------+----------------------+----------------------+------- - 210103 | Brain | 21.01 | 26 - 210205 | David | 21.02 | 47 - 210102 | Ben | 21.01 | 62 - 210204 | Carl | 21.02 | 77 - 210309 | Henry | 21.03 | 67 - 210410 | Jack | 21.04 | 75 - 210311 | Jerry | 21.04 | 60 - 210101 | Alan | 21.01 | 92 - 210206 | Eric | 21.02 | 97 - 210307 | Frank | 21.03 | 90 - 210308 | Gavin | 21.03 | 100 -(11 rows) - --- Query data in the pass partition of the graderecord table. -MogDB=# SELECT * FROM graderecord PARTITION (pass); -ERROR: partition "pass" of relation "graderecord" does not exist -The query fails. -The cause is that the defined PARTITION pass START(60) END(90), statement is in the first place and has START specified. Therefore, the range (MINVALUE, 60) will be automatically used as the first actual partition, and its name will be pass_0. -The name of the partition with the range of 60 ≤ grade < 90 is pass_1. - --- Query data in the pass_0 partition of the graderecord table. -MogDB=# SELECT * FROM graderecord PARTITION (pass_0); - number | name | class | grade ---------+----------------------+----------------------+------- - 210103 | Brain | 21.01 | 26 - 210205 | David | 21.02 | 47 -(2 rows) - --- Query data in the pass_1 partition of the graderecord table. -MogDB=# SELECT * FROM graderecord PARTITION (pass_1); - number | name | class | grade ---------+----------------------+----------------------+------- - 210102 | Ben | 21.01 | 62 - 210204 | Carl | 21.02 | 77 - 210309 | Henry | 21.03 | 67 - 210410 | Jack | 21.04 | 75 - 210311 | Jerry | 21.04 | 60 -(5 rows) - --- Query data in the execllent partition of the graderecord table. -MogDB=# SELECT * FROM graderecord PARTITION (excellent); - number | name | class | grade ---------+----------------------+----------------------+------- - 210101 | Alan | 21.01 | 92 - 210206 | Eric | 21.02 | 97 - 210307 | Frank | 21.03 | 90 - 210308 | Gavin | 21.03 | 100 -(4 rows) -``` - -Example 4: Execute **START(partition_value) END (partition_value) EVERY (interval_value)** to create a START END range partitioned table named **metro_ride_record**. There are seven partitions and their partition keys are of the INTEGER type. The value of **ride_stations_number** is less than **21**. Every three stations form a partition. - -```sql --- Create the metro_ride_record partitioned table. Record the number of passengers, getting-on and getting-off stations, and number of stations. A partition is created for every three stations based on the number of stations. -MogDB=# CREATE TABLE metro_ride_record - ( - record_number INTEGER, - name CHAR(20), - enter_station CHAR(20), - leave_station CHAR(20), - ride_stations_number INTEGER - ) - PARTITION BY RANGE(ride_stations_number) - ( - PARTITION cost START(3) END(21) EVERY (3) - ); - --- Insert data into the partition. -MogDB=# insert into metro_ride_record values('120101','Brain','Tung Chung','Tsing Yi',2); -MogDB=# insert into metro_ride_record values('120102','David','Po Lam','Yau Tong',4); -MogDB=# insert into metro_ride_record values('120103','Ben','Yau Ma Tei','Wong Tai Sin',6); -MogDB=# insert into metro_ride_record values('120104','Carl','Tai Wo Hau','Prince Edward',8); -MogDB=# insert into metro_ride_record values('120105','Henry','Admiralty','Lai King',10); -MogDB=# insert into metro_ride_record values('120106','Jack','Chai Wan','Central',12); -MogDB=# insert into metro_ride_record values('120107','Jerry','Central','Tai Wo Hau',14); -MogDB=# insert into metro_ride_record values('120108','Alan','Diamond Hill','Kwai Hing',16); -MogDB=# insert into metro_ride_record values('120109','Eric','Jordan','Shek Kip Mei',18); -MogDB=# insert into metro_ride_record values('120110','Frank','Lok Fu','Sunny Bay',20); - --- Query data in the metro_ride_record table. -MogDB=# SELECT * FROM metro_ride_record; - record_number | name | enter_station | leave_station | ride_stations_number ----------------+----------------------+----------------------+----------------------+---------------------- - 120101 | Brain | Tung Chung | Tsing Yi | 2 - 120102 | David | Po Lam | Yau Tong | 4 - 120103 | Ben | Yau Ma Tei | Wong Tai Sin | 6 - 120104 | Carl | Tai Wo Hau | Prince Edward | 8 - 120105 | Henry | Admiralty | Lai King | 10 - 120106 | Jack | Chai Wan | Central | 12 - 120107 | Jerry | Central | Tai Wo Hau | 14 - 120108 | Alan | Diamond Hill | Kwai Hing | 16 - 120109 | Eric | Jordan | Shek Kip Mei | 18 - 120110 | Frank | Lok Fu | Sunny Bay | 20 -(10 rows) - -The defined PARTITION cost START(3) END(21) EVERY (3) statement is in the first place and has START specified. Therefore, the range (MINVALUE, 3) will be automatically used as the first actual partition, and its name will be cost_0. -Other partitions are cost_1, ..., and cost_6. - --- Query data in the cost_0 partition of the metro_ride_record table. -MogDB=# SELECT * FROM metro_ride_record PARTITION (cost_0); - record_number | name | enter_station | leave_station | ride_stations_number ----------------+----------------------+----------------------+----------------------+---------------------- - 120101 | Brain | Tung Chung | Tsing Yi | 2 -(1 row) - --- Query data in the cost_1 partition of the metro_ride_record table. -MogDB=# SELECT * FROM metro_ride_record PARTITION (cost_1); - record_number | name | enter_station | leave_station | ride_stations_number ----------------+----------------------+----------------------+----------------------+---------------------- - 120102 | David | Po Lam | Yau Tong | 4 -(1 row) - --- Query data in the cost_6 partition of the metro_ride_record table. -MogDB=# SELECT * FROM metro_ride_record PARTITION (cost_6); - record_number | name | enter_station | leave_station | ride_stations_number ----------------+----------------------+----------------------+----------------------+---------------------- - 120109 | Eric | Jordan | Shek Kip Mei | 18 - 120110 | Frank | Lok Fu | Sunny Bay | 20 -(2 rows) -``` - -Example 5: Execute **START(partition_value)** to create a START END range partitioned table named **graderecord**. There are three partitions, and their partition keys are of the INTEGER type. The partition ranges are as follows: 0 ≤ **grade** < 60, 60 ≤ **grade** < 90, and 90 ≤ **grade** < **MAXVALUE**. - -```sql --- Create the graderecord partitioned table. -MogDB=# CREATE TABLE graderecord - ( - number INTEGER, - name CHAR(20), - class CHAR(20), - grade INTEGER - ) - PARTITION BY RANGE(grade) - ( - PARTITION pass START(60), - PARTITION excellent START(90) - ); - --- Insert data into the partition. -MogDB=# insert into graderecord values('210101','Alan','21.01',92); -MogDB=# insert into graderecord values('210102','Ben','21.01',62); -MogDB=# insert into graderecord values('210103','Brain','21.01',26); -MogDB=# insert into graderecord values('210204','Carl','21.02',77); -MogDB=# insert into graderecord values('210205','David','21.02',47); -MogDB=# insert into graderecord values('210206','Eric','21.02',97); -MogDB=# insert into graderecord values('210307','Frank','21.03',90); -MogDB=# insert into graderecord values('210308','Gavin','21.03',100); -MogDB=# insert into graderecord values('210309','Henry','21.03',67); -MogDB=# insert into graderecord values('210410','Jack','21.04',75); -MogDB=# insert into graderecord values('210311','Jerry','21.04',60); - - --- Query data in the graderecord table. -MogDB=# SELECT * FROM graderecord; - number | name | class | grade ---------+----------------------+----------------------+------- - 210103 | Brain | 21.01 | 26 - 210205 | David | 21.02 | 47 - 210102 | Ben | 21.01 | 62 - 210204 | Carl | 21.02 | 77 - 210309 | Henry | 21.03 | 67 - 210410 | Jack | 21.04 | 75 - 210311 | Jerry | 21.04 | 60 - 210101 | Alan | 21.01 | 92 - 210206 | Eric | 21.02 | 97 - 210307 | Frank | 21.03 | 90 - 210308 | Gavin | 21.03 | 100 -(11 rows) - --- Query data in the pass partition of the graderecord table. -MogDB=# SELECT * FROM graderecord PARTITION (pass); -ERROR: partition "pass" of relation "graderecord" does not exist -The query fails. -The cause is that the defined PARTITION pass START(60), statement is in the first place and has START specified. Therefore, the range (MINVALUE, 60) will be automatically used as the first actual partition, and its name will be pass_0. -The name of the partition with the range of 60 ≤ grade < 90 is pass_1. - --- Query data in the pass_0 partition of the graderecord table. -MogDB=# SELECT * FROM graderecord PARTITION (pass_0); - number | name | class | grade ---------+----------------------+----------------------+------- - 210103 | Brain | 21.01 | 26 - 210205 | David | 21.02 | 47 -(2 rows) - --- Query data in the pass_1 partition of the graderecord table. -MogDB=# SELECT * FROM graderecord PARTITION (pass_1); - number | name | class | grade ---------+----------------------+----------------------+------- - 210102 | Ben | 21.01 | 62 - 210204 | Carl | 21.02 | 77 - 210309 | Henry | 21.03 | 67 - 210410 | Jack | 21.04 | 75 - 210311 | Jerry | 21.04 | 60 -(5 rows) - --- Query data in the execllent partition of the graderecord table. -MogDB=# SELECT * FROM graderecord PARTITION (excellent); - number | name | class | grade ---------+----------------------+----------------------+------- - 210101 | Alan | 21.01 | 92 - 210206 | Eric | 21.02 | 97 - 210307 | Frank | 21.03 | 90 - 210308 | Gavin | 21.03 | 100 -(4 rows) -``` - -Example 6: Execute **END(partition_value | MAXVALUE)** to create a START END range partitioned table named **graderecord**. There are three partitions, and their partition keys are of the INTEGER type. The partition ranges are as follows: 0 ≤ **grade** < 60, 60 ≤ **grade** < 90, and 90 ≤ **grade** < **MAXVALUE**. - -```sql --- Create the graderecord partitioned table. -MogDB=# CREATE TABLE graderecord - ( - number INTEGER, - name CHAR(20), - class CHAR(20), - grade INTEGER - ) - PARTITION BY RANGE(grade) - ( - PARTITION no_pass END(60), - PARTITION pass END(90), - PARTITION excellent END(MAXVALUE) - ); - --- Insert data into the partition. -MogDB=# insert into graderecord values('210101','Alan','21.01',92); -MogDB=# insert into graderecord values('210102','Ben','21.01',62); -MogDB=# insert into graderecord values('210103','Brain','21.01',26); -MogDB=# insert into graderecord values('210204','Carl','21.02',77); -MogDB=# insert into graderecord values('210205','David','21.02',47); -MogDB=# insert into graderecord values('210206','Eric','21.02',97); -MogDB=# insert into graderecord values('210307','Frank','21.03',90); -MogDB=# insert into graderecord values('210308','Gavin','21.03',100); -MogDB=# insert into graderecord values('210309','Henry','21.03',67); -MogDB=# insert into graderecord values('210410','Jack','21.04',75); -MogDB=# insert into graderecord values('210311','Jerry','21.04',60); - - --- Query data in the graderecord table. -MogDB=# SELECT * FROM graderecord; - number | name | class | grade ---------+----------------------+----------------------+------- - 210103 | Brain | 21.01 | 26 - 210205 | David | 21.02 | 47 - 210102 | Ben | 21.01 | 62 - 210204 | Carl | 21.02 | 77 - 210309 | Henry | 21.03 | 67 - 210410 | Jack | 21.04 | 75 - 210311 | Jerry | 21.04 | 60 - 210101 | Alan | 21.01 | 92 - 210206 | Eric | 21.02 | 97 - 210307 | Frank | 21.03 | 90 - 210308 | Gavin | 21.03 | 100 -(11 rows) - --- Query data in the no_pass partition of the graderecord table. -MogDB=# SELECT * FROM graderecord PARTITION (no_pass); - number | name | class | grade ---------+----------------------+----------------------+------- - 210103 | Brain | 21.01 | 26 - 210205 | David | 21.02 | 47 -(2 rows) - --- Query data in the pass partition of the graderecord table. -MogDB=# SELECT * FROM graderecord PARTITION (pass); - number | name | class | grade ---------+----------------------+----------------------+------- - 210102 | Ben | 21.01 | 62 - 210204 | Carl | 21.02 | 77 - 210309 | Henry | 21.03 | 67 - 210410 | Jack | 21.04 | 75 - 210311 | Jerry | 21.04 | 60 -(5 rows) - --- Query data in the execllent partition of the graderecord table. -MogDB=# SELECT * FROM graderecord PARTITION (excellent); - number | name | class | grade ---------+----------------------+----------------------+------- - 210101 | Alan | 21.01 | 92 - 210206 | Eric | 21.02 | 97 - 210307 | Frank | 21.03 | 90 - 210308 | Gavin | 21.03 | 100 -(4 rows) -``` - -## Syntax for Creating a List Partitioned Table - -``` -CREATE TABLE partition_table_name -( [column_name data_type ] - [, ... ] -) - PARTITION BY LIST (partition_key) - ( - PARTITION partition_name VALUES (list_values_clause) - [, ... ] - ); -``` - -## Parameters for Creating a List Partitioned Table - -- **partition_table_name** - - Specifies the name of the partitioned table. - -- **column_name** - - Specifies the name of the column to be created in the new table. - -- **data_type** - - Specifies the data type of the column. - -- **partition_key** - - Specifies the name of the partition key. - - The list partitioning policy supports only one column of partition keys. - -- **partition_name** - - Specifies the name of a range partition. - -- **list_values_clause** - - There are one or more key values of the corresponding partition. Use commas (,) to separate multiple key values. - -- **VALUES (DEFAULT)** - - If the added data contains key values that are not listed in **list_values_clause**, the data is stored in the partition corresponding to **VALUES (DEFAULT)**. - -- **MAXVALUE** - - Specifies the upper limit of the last range partition. - -## Example of Creating a List Partitioned Table - -Example 7: Create the **graderecord** list partitioned table. There are four partitions, and their partition keys are of the CHAR type. The partition ranges are 21.01, 21.02, 21.03, and 21.04. - -```sql --- Create the graderecord partitioned table. -MogDB=# CREATE TABLE graderecord - ( - number INTEGER, - name CHAR(20), - class CHAR(20), - grade INTEGER - ) - PARTITION BY LIST(class) - ( - PARTITION class_01 VALUES ('21.01'), - PARTITION class_02 VALUES ('21.02'), - PARTITION class_03 VALUES ('21.03'), - PARTITION class_04 VALUES ('21.04') - ); - --- Insert data into the partition. -MogDB=# insert into graderecord values('210101','Alan','21.01',92); -MogDB=# insert into graderecord values('210102','Ben','21.01',62); -MogDB=# insert into graderecord values('210103','Brain','21.01',26); -MogDB=# insert into graderecord values('210204','Carl','21.02',77); -MogDB=# insert into graderecord values('210205','David','21.02',47); -MogDB=# insert into graderecord values('210206','Eric','21.02',97); -MogDB=# insert into graderecord values('210307','Frank','21.03',90); -MogDB=# insert into graderecord values('210308','Gavin','21.03',100); -MogDB=# insert into graderecord values('210309','Henry','21.03',67); -MogDB=# insert into graderecord values('210410','Jack','21.04',75); -MogDB=# insert into graderecord values('210311','Jerry','21.04',60); - - --- Query data in the graderecord table. -MogDB=# SELECT * FROM graderecord; - number | name | class | grade ---------+----------------------+----------------------+------- - 210410 | Jack | 21.04 | 75 - 210311 | Jerry | 21.04 | 60 - 210307 | Frank | 21.03 | 90 - 210308 | Gavin | 21.03 | 100 - 210309 | Henry | 21.03 | 67 - 210204 | Carl | 21.02 | 77 - 210205 | David | 21.02 | 47 - 210206 | Eric | 21.02 | 97 - 210101 | Alan | 21.01 | 92 - 210102 | Ben | 21.01 | 62 - 210103 | Brain | 21.01 | 26 -(11 rows) - --- Query data in the class_01 partition of the graderecord table. -MogDB=# SELECT * FROM graderecord PARTITION (class_01); - number | name | class | grade ---------+----------------------+----------------------+------- - 210101 | Alan | 21.01 | 92 - 210102 | Ben | 21.01 | 62 - 210103 | Brain | 21.01 | 26 -(3 rows) - --- Query data in the class_04 partition of the graderecord table. -MogDB=# SELECT * FROM graderecord PARTITION (class_04); - number | name | class | grade ---------+----------------------+----------------------+------- - 210410 | Jack | 21.04 | 75 - 210311 | Jerry | 21.04 | 60 -(2 rows) -``` - -## Syntax for Creating an Interval Partitioned Table - -Interval partitioning adds the definition of the interval value **PARTITION BY RANGE (partition_key)** on the basis of range partitioning. - -The syntax of the **VALUES LESS THAN** interval partition is as follows: - -``` -CREATE TABLE partition_table_name -( [column_name data_type ] - [, ... ] -) - PARTITION BY RANGE (partition_key) - ( - INTERVAL ('interval_expr') - PARTITION partition_name VALUES LESS THAN (partition_value | MAXVALUE}) - [, ... ] - ); -``` - -The syntax for creating a START END interval partitioned table is as follows: - -Method 1: By executing **START(partition_value) END (partition_value | MAXVALUE)** - -``` -CREATE TABLE partition_table_name -( [column_name data_type ] - [, ... ] -) - PARTITION BY RANGE (partition_key) - ( - INTERVAL ('interval_expr') - PARTITION partition_name START(partition_value) END (partition_value | MAXVALUE) - [, ... ] - ); -``` - -Method 2: By executing **START(partition_value) END (partition_value) EVERY (interval_value)** - -``` -CREATE TABLE partition_table_name -( [column_name data_type ] - [, ... ] -] ) - PARTITION BY RANGE (partition_key) - ( - PARTITION partition_name START(partition_value) END (partition_value) EVERY (interval_value) - [, ... ] - ); -``` - -Method 3: By executing **START(partition_value)** - -``` -CREATE TABLE partition_table_name -( [column_name data_type ] - [, ... ] -] ) - PARTITION BY RANGE (partition_key) - ( - INTERVAL ('interval_expr') - PARTITION partition_name START(partition_value) - [, ... ] - ); -``` - -Method 4: By executing **END(partition_value | MAXVALUE)** - -``` -CREATE TABLE partition_table_name -( [column_name data_type ] - [, ... ] -] ) - PARTITION BY RANGE (partition_key) - INTERVAL ('interval_expr') - ( - PARTITION partition_name END(partition_value | MAXVALUE) - [, ... ] - ); -``` - -## Parameters for Creating an Interval Partitioned Table - -- **INTERVAL ('interval_expr')** - - Defines interval partitioning. Only the TIMESTAMP[(p)] [WITHOUT TIME ZONE], TIMESTAMP[(p)] [WITH TIME ZONE] and DATE data types are supported. - -- **interval_expr** - - Specifies the interval for automatically creating partitions, for example, 1 day or 1 month. - -- **partition_name** - - Specifies the name of a range partition. - - The partitions automatically created by the system are named **sys_p1**, **sys_p2**, **sys_p3**, and the like. - -## Example of Creating an Interval Partitioned Table - -Example 8: Creating the **sales_table** interval partitioned table. - -```sql --- Create the sales_table partitioned table. -MogDB=# CREATE TABLE sales_table -( - order_no INTEGER NOT NULL, - goods_name CHAR(20) NOT NULL, - sales_date DATE NOT NULL, - sales_volume INTEGER, - sales_store CHAR(20) -) -PARTITION BY RANGE(sales_date) - INTERVAL ('1 month') - ( - PARTITION start VALUES LESS THAN('2021-01-01 00:00:00'), - PARTITION later VALUES LESS THAN('2021-01-10 00:00:00') - ); --- Insert data into the later partition. -MogDB=# INSERT INTO sales_table VALUES(1, 'jacket', '2021-01-8 00:00:00', 3,'Alaska'); - --- If you do not insert data into existing partitions, the system creates the sys_p1 partition. -MogDB=# INSERT INTO sales_table VALUES(2, 'hat', '2021-04-06 00:00:00', 255,'Clolorado'); - --- If you do not insert data into existing partitions, the system creates the sys_p2 partition. -MogDB=# INSERT INTO sales_table VALUES(3, 'shirt', '2021-11-17 00:00:00', 7000,'Florida'); - --- Insert data into the start partition. -MogDB=# INSERT INTO sales_table VALUES(4, 'coat', '2020-10-21 00:00:00', 9000,'Hawaii'); - --- Query data in the sales_table table. -MogDB=# SELECT * FROM sales_table; - order_no | goods_name | sales_date | sales_volume | sales_store -----------+----------------------+---------------------+--------------+---------------------- - 4 | coat | 2020-10-21 00:00:00 | 9000 | Hawaii - 1 | jacket | 2021-01-08 00:00:00 | 3 | Alaska - 2 | hat | 2021-04-06 00:00:00 | 255 | Clolorado - 3 | shirt | 2021-11-17 00:00:00 | 7000 | Florida -(4 rows) - --- Query data in the start partition of the sales_table table. In this example, sales_table PARTITION (start); is used to reference partitions. -MogDB=# SELECT * FROM sales_table PARTITION (start); - order_no | goods_name | sales_date | sales_volume | sales_store -----------+----------------------+---------------------+--------------+---------------------- - 4 | coat | 2020-10-21 00:00:00 | 9000 | Hawaii -(1 row) - --- Query data in the later partition of the sales_table table. In this example, sales_table PARTITION (later); is used to reference partitions. -MogDB=# SELECT * FROM sales_table PARTITION (later); - order_no | goods_name | sales_date | sales_volume | sales_store -----------+----------------------+---------------------+--------------+---------------------- - 1 | jacket | 2021-01-08 00:00:00 | 3 | Alaska -(1 row) - --- Query data in the sys_p1 partition of the sales_table table. In this example, sales_table PARTITION (sys_p1); is used to reference partitions. -MogDB=# SELECT * FROM sales_table PARTITION (sys_p1); - order_no | goods_name | sales_date | sales_volume | sales_store -----------+----------------------+---------------------+--------------+---------------------- - 2 | hat | 2021-04-06 00:00:00 | 255 | Clolorado -(1 row) - --- Query data in the sys_p2 partition of the sales_table table. In this example, sales_table PARTITION (sys_p2); is used to reference partitions. -MogDB=# SELECT * FROM sales_table PARTITION (sys_p2); - order_no | goods_name | sales_date | sales_volume | sales_store -----------+----------------------+---------------------+--------------+---------------------- - 3 | shirt | 2021-11-17 00:00:00 | 7000 | Florida -(1 row) -``` - -## Syntax for Creating a Hash Partitioned Table - -``` -CREATE TABLE partition_table_name -( [column_name data_type ] - [, ... ] -) - PARTITION BY HASH (partition_key) - (PARTITION partition_name ) - [, ... ] - ); -``` - -## Parameters for Creating a Hash Partitioned Table - -- **partition_table_name** - - Specifies the name of the partitioned table. - -- **column_name** - - Specifies the name of the column to be created in the new table. - -- **data_type** - - Specifies the data type of the column. - -- **partition_key** - - Specifies the name of the partition key. The hash partitioning policy supports only one column of partition keys. - -- **partition_name** - - Specifies the name of a hash partition. The number of hash partitions to be created is the same as the number of partition names. - -## Example of Creating a Hash Partitioned Table - -Example 9: Create the **hash_partition_table** hash partitioned table. - -```sql --- Create the hash_partition_table hash partitioned table. -MogDB=# create table hash_partition_table ( -col1 int, -col2 int) -partition by hash(col1) -( -partition p1, -partition p2 -); - --- Insert data. -MogDB=# INSERT INTO hash_partition_table VALUES(1, 1); -INSERT 0 1 -MogDB=# INSERT INTO hash_partition_table VALUES(2, 2); -INSERT 0 1 -MogDB=# INSERT INTO hash_partition_table VALUES(3, 3); -INSERT 0 1 -MogDB=# INSERT INTO hash_partition_table VALUES(4, 4); -INSERT 0 1 - --- View the data. -MogDB=# select * from hash_partition_table partition (p1); - col1 | col2 -------+------ - 3 | 3 - 4 | 4 -(2 rows) - -MogDB=# select * from hash_partition_table partition (p2); - col1 | col2 -------+------ - 1 | 1 - 2 | 2 -(2 rows) -``` - -## Syntax for Importing Data - -Import a single row of data. - -``` -INSERT INTO partition_table_name [ ( column_name [, ...] ) ] VALUES [ ( value )[, ...] ]; -``` - -Import data from an existing table with the same structure. - -``` -INSERT INTO partition_table_name SELECT * FROM source_table_name -``` - -## Parameters for Importing Data - -- **partition_table_name** - - Specifies the name of the partitioned table. - -- **column_name** - - Specifies a column name in the partitioned table. It can be omitted. - -- **value** - - Specifies column values. - - - If the value of **column_name** is provided, the value provided by the **value** clause is associated with the corresponding column from left to right. - - If the value of **column_name** is not provided, the value provided by the **value** clause is associated with the column specified by **partition_table_name** from left to right. - -## Example of Importing Data - -Example 10: - -```sql --- Create the employees_table partitioned table. -MogDB=# CREATE TABLE employees_table -( - employee_id INTEGER NOT NULL, - employee_name CHAR(20) NOT NULL, - onboarding_date DATE NOT NULL, - position CHAR(20) -) -PARTITION BY RANGE(onboarding_date) -( - PARTITION founders VALUES LESS THAN('2000-01-01 00:00:00'), - PARTITION senate VALUES LESS THAN('2010-01-01 00:00:00'), - PARTITION seniors VALUES LESS THAN('2020-01-01 00:00:00'), - PARTITION newcomer VALUES LESS THAN(MAXVALUE) -); - --- Insert data into the founders partition. -MogDB=# INSERT INTO employees_table VALUES(1, 'SMITH', '1997-01-10 00:00:00','Manager'); - --- View data in the founders partition. -MogDB=# select * from employees_table partition (founders); - --- Create the employees_data_table table. -MogDB=# CREATE TABLE employees_data_table -( - employee_id INTEGER NOT NULL, - employee_name CHAR(20) NOT NULL, - onboarding_date DATE NOT NULL, - position CHAR(20) -); --- Insert data. -MogDB=# insert into employees_data_table (employee_id, employee_name, onboarding_date, position) VALUES -(2, 'JONES', '2001-05-06 00:00:00', 'Supervisor'), -(3, 'WILLIAMS', '2011-09-17 00:00:00', 'Engineer'), -(4, 'TAYLOR', '2021-10-21 00:00:00', 'Clerk'); - --- View table data. -MogDB=# select * from employees_data_table; - --- Import data to the employees_table table. -MogDB=# INSERT INTO employees_table SELECT * FROM employees_data_table; - --- View data in the senate partition. -MogDB=# select * from employees_table partition (senate); - employee_id | employee_name | onboarding_date | position --------------+----------------------+---------------------+---------------------- - 2 | JONES | 2001-05-06 00:00:00 | Supervisor -(1 row) - --- View data in the seniors partition. -MogDB=# select * from employees_table partition (seniors); - employee_id | employee_name | onboarding_date | position --------------+----------------------+---------------------+---------------------- - 3 | WILLIAMS | 2011-09-17 00:00:00 | Engineer -(1 row) - --- View data in the newcomer partition. -MogDB=# select * from employees_table partition (newcomer); - employee_id | employee_name | onboarding_date | position --------------+----------------------+---------------------+---------------------- - 4 | TAYLOR | 2021-10-21 00:00:00 | Clerk -(1 row) -``` - -## Syntax for Modifying a Partitioned Table - -- Delete a partition. - - ``` - ALTER TABLE partition_table_name DROP PARTITION partition_name; - ``` - -- Add a partition. - - ``` - ALTER TABLE partition_table_name ADD {partition_less_than_item | partition_start_end_item| partition_list_item }; - ``` - -- Rename a partition. - - ``` - ALTER TABLE partition_table_name RENAME PARTITION partition_name TO partition_new_name; - ``` - -- Split a partition (Specify the syntax of **split_partition_value**). - - ``` - ALTER TABLE partition_table_name SPLIT PARTITION partition_name AT ( split_partition_value ) INTO ( PARTITION partition_new_name1, PARTITION partition_new_name2); - ``` - -- Split a partition (Specify the syntax of the partition range). - - ``` - ALTER TABLE partition_table_name SPLIT PARTITION partition_name INTO { ( partition_less_than_item [, ...] ) | ( partition_start_end_item [, ...] ) }; - ``` - -- Combine partitions. - - ``` - ALTER TABLE partition_table_name MERGE PARTITIONS { partition_name } [, ...] INTO PARTITION partition_name; - ``` - -## Parameters for Modifying a Partitioned Table - -- **partition_table_name** - - Specifies the name of the partitioned table. - -- **partition_name** - - Specifies the partition name. - -- **split_partition_value** - - Specifies the split point. - -- **PARTITION partition_new_name1, PARTITION partition_new_name2** - - Specifies the two partitions that are split based on the split point. - -- **partition_less_than_item** - - Specifies the description statement of a partition item. The syntax is as follows: - - ``` - PARTITION partition_name VALUES LESS THAN ( { partition_value | MAXVALUE } [, ...] ) - ``` - - The usage is the same as that in [Syntax for Creating a VALUES LESS THAN Range Partitioned Table](#Syntax for Creating a VALUES LESS THAN Range Partitioned Table). - -- **partition_start_end_item** - - Specifies the description statement of a partition item. The syntax is as follows: - - ``` - PARTITION partition_name { - {START(partition_value) END (partition_value) EVERY (interval_value)} | - {START(partition_value) END ({partition_value | MAXVALUE})} | - {START(partition_value)} | - {END({partition_value | MAXVALUE})} - ``` - - The usage is the same as that in [Syntax for Creating a START END Range Partitioned Table](#Syntax for Creating a START END Range Partitioned Table). - -- **partition_list_item** - - Specifies the description statement of a partition item. The syntax is as follows: - - ``` - PARTITION partition_name VALUES (list_values_clause) - ``` - - The usage is the same as that in [Syntax for Creating a List Partitioned Table](#Syntax for Creating a List Partitioned Table). - -- **split_point_clause** - - Specifies the split point when a partition is split. - -- **partition_value** - - Specifies the key value of a partition. - -## Example of Modifying a Partitioned Table - -Example 11: - -```sql --- Create the employees_table partitioned table. -MogDB=# CREATE TABLE employees_table -( - employee_id INTEGER NOT NULL, - employee_name CHAR(20) NOT NULL, - onboarding_date DATE NOT NULL, - position CHAR(20) -) -PARTITION BY RANGE(onboarding_date) -( - PARTITION founders VALUES LESS THAN('2000-01-01 00:00:00'), - PARTITION senate VALUES LESS THAN('2010-01-01 00:00:00'), - PARTITION seniors VALUES LESS THAN('2020-01-01 00:00:00'), - PARTITION newcomer VALUES LESS THAN(MAXVALUE) -); - --- Insert data. -MogDB=# INSERT INTO employees_table VALUES -(1, 'SMITH', '1997-01-10 00:00:00','Manager'), -(2, 'JONES', '2001-05-06 00:00:00', 'Supervisor'), -(3, 'WILLIAMS', '2011-09-17 00:00:00', 'Engineer'), -(4, 'TAYLOR', '2021-10-21 00:00:00', 'Clerk'); - -View the newcomer partition. -MogDB=# SELECT * FROM employees_table PARTITION (newcomer); - employee_id | employee_name | onboarding_date | position --------------+----------------------+---------------------+---------------------- - 4 | TAYLOR | 2021-10-21 00:00:00 | Clerk -(1 row) - --- Delete the newcomer partition. -MogDB=# ALTER TABLE employees_table DROP PARTITION newcomer; -ALTER TABLE - --- View data in the newcomer partition. -MogDB=# select * from employees_table partition (newcomer); -ERROR: partition "newcomer" of relation "employees_table" does not exist - --- Add the fresh partition. -MogDB=# ALTER TABLE employees_table ADD PARTITION fresh VALUES LESS THAN ('2040-01-01 00:00:00'); -ALTER TABLE - --- Use 2030-01-01 00:00:00 as the split point to split the fresh partition into the current and future partitions. -MogDB=# ALTER TABLE employees_table SPLIT PARTITION fresh AT ('2030-01-01 00:00:00') INTO (PARTITION current, PARTITION future); -ALTER TABLE - --- Change the name of the current partition to now. -MogDB=# ALTER TABLE employees_table RENAME PARTITION current TO now; -ALTER TABLE - --- Combine the founders and senate partitions into the original partition. -MogDB=# ALTER TABLE employees_table MERGE PARTITIONS founders, senate INTO PARTITION original; -``` - -## Syntax for Deleting a Partitioned Table - -``` -DROP TABLE partition_table_name; -``` - -## Parameters for Deleting a Partitioned Table - -- **partition_table_name** - - Specifies the name of the partitioned table. - -## Example of Deleting a Partitioned Table - -Example 12: - -```sql --- Delete the employees_table partitioned table. -MogDB=# DROP TABLE employees_table; -DROP TABLE +--- +title: Partitioned Tables +summary: Partitioned Tables +author: zhang cuiping +date: 2023-04-07 +--- + +# Partitioned Tables + +If a table contains a large amount of data, data query and operation efficiency will be severely affected. MogDB can logically divide a table into multiple shards to avoid processing a large amount of data at a time and then improve the processing efficiency. + +MogDB supports the following types of partitioned tables: + +- [Range partitioned table](#syntax-for-creating-a-values-less-than-range-partitioned-table): One or more columns are divided into multiple ranges. A partition is created for each range to store data. For example, sales data can be partitioned by month. +- [List partitioned table](#syntax-for-creating-a-list-partitioned-table): Partitions are created based on values in a column. For example, sales data is divided by sales store. +- [Interval partitioned table](#syntax-for-creating-an-interval-partitioned-table): It is a special type of range partitions. The interval value definition is added. If no matched partition is found when a record is inserted, partitions can be automatically created based on the interval. +- [Hash partitioned table](#syntax-for-creating-a-hash-partitioned-table): The modulus and remainder are specified for each partition based on a column of the table, and the records to be inserted into the table are allocated to the corresponding partitions. + +In addition to creating a partitioned table, you can perform the following operations: + +- [Querying a partitioned table](#syntax-for-querying-a-partitioned-table): Data is queried by partition name or value in a partition. +- [Importing data](#syntax-for-importing-data): Data is imported directly or from an existing table. +- [Modifying a partitioned table](#syntax-for-modifying-a-partitioned-table): Partitions are added, deleted,split, or combined, or partition names are changed. +- [Deleting a partitioned table](#syntax-for-deleting-a-partitioned-table): The operation is the same as that of deleting a common table. + +## Classification of Range Partitioned Tables + +Range partitioned tables are classified into the following types: + +- [VALUES LESS THAN](#syntax-for-creating-a-values-less-than-range-partitioned-table):specifies the partition range based on the upper limit of each partition. Upper limit of the previous partition ≤ Range of the partition ≤ Upper limit of the current partition. +- [START END](#syntax-for-creating-a-start-end-range-partitioned-table):Partitioning is performed in the following methods. + - [START(partition_value) END (partition_value | MAXVALUE)](#se); + - [START(partition_value)](#s); + - [END(partition_value | MAXVALUE)](#e) + - [START(partition_value) END (partition_value) EVERY (interval_value)](#see) + - Comprehensively using the preceding methods + +## Syntax for Creating a VALUES LESS THAN Range Partitioned Table + +```sql +CREATE TABLE partition_table_name +( [column_name data_type ] + [, ... ] +) + PARTITION BY RANGE (partition_key) + ( + PARTITION partition_name VALUES LESS THAN (partition_value | MAXVALUE) + [, ... ] + ); +``` + +## Parameters for Creating a VALUES LESS THAN Range Partitioned Table + +- **partition_table_name** + + Specifies the name of the partitioned table. + +- **column_name** + + Specifies the name of the column to be created in the new table. + +- **data_type** + + Specifies the data type of the column. + +- **partition_key** + + Specifies the name of the partition key. + + In this case, a maximum of four partition keys are supported. + +- **partition_name** + + Specifies the name of a range partition. + +- **VALUES LESS THAN** + + Specifies that the value in the partition must be less than the upper limit value. + +- **partition_value** + + Specifies the upper limit of a range partition, and the value depends on the type specified by **partition_key**. + +- **MAXVALUE** + + Specifies the upper limit of the last range partition. + +## Example of Creating a VALUES LESS THAN Range Partitioned Table + +Example 1: Create the **sales_table** range partitioned table. The table has four partitions and the data type of their partition keys is DATE. The range of the partition is as follows: **sales_date** < 2021-04-01, 2021-04-01 ≤ **sales_date** < 2021-07-01, 2021-07-01 ≤ **sales_date** < 2021-10-01, and 2021-10-01 ≤ **sales_date** < **MAXVALUE**. + +```sql +-- Create the sales_table partitioned table. +MogDB=# CREATE TABLE sales_table +( + order_no INTEGER NOT NULL, + goods_name CHAR(20) NOT NULL, + sales_date DATE NOT NULL, + sales_volume INTEGER, + sales_store CHAR(20) +) +PARTITION BY RANGE(sales_date) +( + PARTITION season1 VALUES LESS THAN('2021-04-01 00:00:00'), + PARTITION season2 VALUES LESS THAN('2021-07-01 00:00:00'), + PARTITION season3 VALUES LESS THAN('2021-10-01 00:00:00'), + PARTITION season4 VALUES LESS THAN(MAXVALUE) +); +-- Insert data into the season1 partition. +MogDB=# INSERT INTO sales_table VALUES(1, 'jacket', '2021-01-10 00:00:00', 3,'Alaska'); + +-- Insert data into the season2 partition. +MogDB=# INSERT INTO sales_table VALUES(2, 'hat', '2021-05-06 00:00:00', 5,'Clolorado'); + +-- Insert data into the season3 partition. +MogDB=# INSERT INTO sales_table VALUES(3, 'shirt', '2021-09-17 00:00:00', 7,'Florida'); + +-- Insert data into the season4 partition. +MogDB=# INSERT INTO sales_table VALUES(4, 'coat', '2021-10-21 00:00:00', 9,'Hawaii'); +``` + +## Syntax for Querying a Partitioned Table + +```sql +SELECT * FROM partition_table_name PARTITION { ( partition_name ) | FOR ( partition_value [, ...] ) } +``` + +## Parameters for Querying a Partitioned Table + +- **partition_table_name** + + Specifies the name of the partitioned table. + +- **partition_name** + + Specifies the partition name. + +- **partition_value** + + Specifies the value of the partition. The partition where the value specified by the **PARTITION FOR** clause is located is the partition to be queried. + +## Example of Querying a Partitioned Table + +Example 2: Query the **sales_table** partitioned table created in example 1. + +```sql +-- Query data in the sales_table table. +MogDB=# SELECT * FROM sales_table; + order_no | goods_name | sales_date | sales_volume | sale +s_store +----------+----------------------+---------------------+--------------+--------- +------------- + 1 | jacket | 2021-01-10 00:00:00 | 3 | Alaska + + 2 | hat | 2021-05-06 00:00:00 | 5 | Clolorado + + 3 | shirt | 2021-09-17 00:00:00 | 7 | Florida + + 4 | coat | 2021-10-21 00:00:00 | 9 | Hawaii + +(4 rows) + +-- Query the data of the fourth quarter in the sales_table table. sales_table PARTITION (season4) is used to reference the partition where the data of the fourth quarter is located. +MogDB=# SELECT * FROM sales_table PARTITION (season4); + order_no | goods_name | sales_date | sales_volume | sales_store +----------+----------------------+---------------------+--------------+---------------------- + 4 | coat | 2021-10-21 00:00:00 | 9 | Hawaii +(1 row) + +-- Query the data of the first quarter in the sales_table table. sales_table PARTITION FOR ('2021-3-21 00:00:00') is used to reference the partition where the data of the first quarter is located. '2021-3-21 00:00:00' is located in the partition where the data of the first quarter is located. +MogDB=# SELECT * FROM sales_table PARTITION FOR ('2021-3-21 00:00:00'); + order_no | goods_name | sales_date | sales_volume | sales_store +----------+----------------------+---------------------+--------------+---------------------- + 1 | jacket | 2021-01-10 00:00:00 | 3 | Alaska +(1 row) +``` + +## Syntax for Creating a START END Range Partitioned Table + +A START END range partitioned table can be created by different methods, and these methods can be combined within a partitioned table. + +- Method 1: By executing **START(partition_value) END (partition_value | MAXVALUE)** + + ```sql + CREATE TABLE partition_table_name + ( [column_name data_type ] + [, ... ] + ) + PARTITION BY RANGE (partition_key) + ( + PARTITION partition_name START(partition_value) END (partition_value | MAXVALUE) + [, ... ] + ); + ``` + +- Method 2: By executing **START(partition_value)** + + ```sql + CREATE TABLE partition_table_name + ( [column_name data_type ] + [, ... ] + ) + PARTITION BY RANGE (partition_key) + ( + PARTITION partition_name START(partition_value) + [, ... ] + ); + ``` + +- Method 3: By executing **END(partition_value | MAXVALUE)** + + ```sql + CREATE TABLE partition_table_name + ( [column_name data_type ] + [, ... ] + ) + PARTITION BY RANGE (partition_key) + ( + PARTITION partition_name END(partition_value | MAXVALUE) + [, ... ] + ); + ``` + +- Method 4: By executing **START(partition_value) END (partition_value) EVERY (interval_value)** + + ```sql + CREATE TABLE partition_table_name + ( [column_name data_type ] + [, ... ] + ) + PARTITION BY RANGE (partition_key) + ( + PARTITION partition_name START(partition_value) END (partition_value) EVERY (interval_value) + [, ... ] + ); + ``` + +## Parameters for Creating a START END Range Partitioned Table + +- **partition_table_name** + + Specifies the name of the partitioned table. + +- **column_name** + + Specifies the name of the column to be created in the new table. + +- **data_type** + + Specifies the data type of the column. + +- **partition_key** + + Specifies the name of the partition key. + + In this case, only one partition key is supported. + +- **partition_name** + + Specifies the name or prefix of the range partition. + + - If the definition is in the **START(partition_value) END (partition_value) EVERY (interval_value)** clause and the value of **partition_name** is **p1**, the partition names are **p1_1**, **p1_2**, and so on. + + For example, if **PARTITION p1 START(1) END(4) EVERY(1)** is defined, the generated partitions are [1, 2), [2, 3), and [3, 4), and their names are **p1_1**, **p1_2**, and **p1_3**. In this case, **p1** is a name prefix. + + - If the defined statement is in the first place and has **START** specified, the range (*MINVALUE*, **START**) will be automatically used as the first actual partition, and its name will be **p1_0**. The other partitions are then named **p1_1**, **p1_2**, and so on. + + For example, if **PARTITION p1 START(1), PARTITION p2 START(2)** is defined, generated partitions are (*MINVALUE*, 1), [1, 2), and [2, *MAXVALUE*), and their names will be **p1_0**, **p1_1**, and **p2**. In this case, **p1** is a name prefix and **p2** is a partition name. **MINVALUE** indicates the minimum value. + + - In other cases, this parameter specifies the range partition name. + +- **VALUES LESS THAN** + + Specifies that the value in the partition must be less than the upper limit value. + +- **partition_value** + + Specifies the endpoint value (start or end point) of the range partition. The value depends on the type specified by **partition_key**. + +- **interval_value** + + Splits the range specified by **[START, END)** and specifies the width of each partition after splitting. If the value of **(END-START)** cannot be exactly divided by the value of **EVERY**, only the width of the last partition is less than the value of **EVERY**. + +- **MAXVALUE** + + Specifies the upper limit of the last range partition. + +## Example of Creating a START END Range Partitioned Table + +Example 3: Execute **START(partition_value) END (partition_value | MAXVALUE)** to create a START END partitioned table named **graderecord**. There are three partitions, and their partition keys are of the INTEGER type. The partition ranges are as follows: 0 ≤ **grade** < 60, 60 ≤ **grade** < 90, and 90 ≤ **grade** < **MAXVALUE**. + +```sql +-- Create the graderecord partitioned table. +MogDB=# CREATE TABLE graderecord + ( + number INTEGER, + name CHAR(20), + class CHAR(20), + grade INTEGER + ) + PARTITION BY RANGE(grade) + ( + PARTITION pass START(60) END(90), + PARTITION excellent START(90) END(MAXVALUE) + ); + +-- Insert data into the partition. +MogDB=# insert into graderecord values('210101','Alan','21.01',92); +MogDB=# insert into graderecord values('210102','Ben','21.01',62); +MogDB=# insert into graderecord values('210103','Brain','21.01',26); +MogDB=# insert into graderecord values('210204','Carl','21.02',77); +MogDB=# insert into graderecord values('210205','David','21.02',47); +MogDB=# insert into graderecord values('210206','Eric','21.02',97); +MogDB=# insert into graderecord values('210307','Frank','21.03',90); +MogDB=# insert into graderecord values('210308','Gavin','21.03',100); +MogDB=# insert into graderecord values('210309','Henry','21.03',67); +MogDB=# insert into graderecord values('210410','Jack','21.04',75); +MogDB=# insert into graderecord values('210311','Jerry','21.04',60); + +-- Query data in the graderecord table. +MogDB=# SELECT * FROM graderecord; + number | name | class | grade +--------+----------------------+----------------------+------- + 210103 | Brain | 21.01 | 26 + 210205 | David | 21.02 | 47 + 210102 | Ben | 21.01 | 62 + 210204 | Carl | 21.02 | 77 + 210309 | Henry | 21.03 | 67 + 210410 | Jack | 21.04 | 75 + 210311 | Jerry | 21.04 | 60 + 210101 | Alan | 21.01 | 92 + 210206 | Eric | 21.02 | 97 + 210307 | Frank | 21.03 | 90 + 210308 | Gavin | 21.03 | 100 +(11 rows) + +-- Query data in the pass partition of the graderecord table. +MogDB=# SELECT * FROM graderecord PARTITION (pass); +ERROR: partition "pass" of relation "graderecord" does not exist +The query fails. +The cause is that the defined PARTITION pass START(60) END(90), statement is in the first place and has START specified. Therefore, the range (MINVALUE, 60) will be automatically used as the first actual partition, and its name will be pass_0. +The name of the partition with the range of 60 ≤ grade < 90 is pass_1. + +-- Query data in the pass_0 partition of the graderecord table. +MogDB=# SELECT * FROM graderecord PARTITION (pass_0); + number | name | class | grade +--------+----------------------+----------------------+------- + 210103 | Brain | 21.01 | 26 + 210205 | David | 21.02 | 47 +(2 rows) + +-- Query data in the pass_1 partition of the graderecord table. +MogDB=# SELECT * FROM graderecord PARTITION (pass_1); + number | name | class | grade +--------+----------------------+----------------------+------- + 210102 | Ben | 21.01 | 62 + 210204 | Carl | 21.02 | 77 + 210309 | Henry | 21.03 | 67 + 210410 | Jack | 21.04 | 75 + 210311 | Jerry | 21.04 | 60 +(5 rows) + +-- Query data in the execllent partition of the graderecord table. +MogDB=# SELECT * FROM graderecord PARTITION (excellent); + number | name | class | grade +--------+----------------------+----------------------+------- + 210101 | Alan | 21.01 | 92 + 210206 | Eric | 21.02 | 97 + 210307 | Frank | 21.03 | 90 + 210308 | Gavin | 21.03 | 100 +(4 rows) +``` + +Example 4: Execute **START(partition_value) END (partition_value) EVERY (interval_value)** to create a START END range partitioned table named **metro_ride_record**. There are seven partitions and their partition keys are of the INTEGER type. The value of **ride_stations_number** is less than **21**. Every three stations form a partition. + +```sql +-- Create the metro_ride_record partitioned table. Record the number of passengers, getting-on and getting-off stations, and number of stations. A partition is created for every three stations based on the number of stations. +MogDB=# CREATE TABLE metro_ride_record + ( + record_number INTEGER, + name CHAR(20), + enter_station CHAR(20), + leave_station CHAR(20), + ride_stations_number INTEGER + ) + PARTITION BY RANGE(ride_stations_number) + ( + PARTITION cost START(3) END(21) EVERY (3) + ); + +-- Insert data into the partition. +MogDB=# insert into metro_ride_record values('120101','Brain','Tung Chung','Tsing Yi',2); +MogDB=# insert into metro_ride_record values('120102','David','Po Lam','Yau Tong',4); +MogDB=# insert into metro_ride_record values('120103','Ben','Yau Ma Tei','Wong Tai Sin',6); +MogDB=# insert into metro_ride_record values('120104','Carl','Tai Wo Hau','Prince Edward',8); +MogDB=# insert into metro_ride_record values('120105','Henry','Admiralty','Lai King',10); +MogDB=# insert into metro_ride_record values('120106','Jack','Chai Wan','Central',12); +MogDB=# insert into metro_ride_record values('120107','Jerry','Central','Tai Wo Hau',14); +MogDB=# insert into metro_ride_record values('120108','Alan','Diamond Hill','Kwai Hing',16); +MogDB=# insert into metro_ride_record values('120109','Eric','Jordan','Shek Kip Mei',18); +MogDB=# insert into metro_ride_record values('120110','Frank','Lok Fu','Sunny Bay',20); + +-- Query data in the metro_ride_record table. +MogDB=# SELECT * FROM metro_ride_record; + record_number | name | enter_station | leave_station | ride_stations_number +---------------+----------------------+----------------------+----------------------+---------------------- + 120101 | Brain | Tung Chung | Tsing Yi | 2 + 120102 | David | Po Lam | Yau Tong | 4 + 120103 | Ben | Yau Ma Tei | Wong Tai Sin | 6 + 120104 | Carl | Tai Wo Hau | Prince Edward | 8 + 120105 | Henry | Admiralty | Lai King | 10 + 120106 | Jack | Chai Wan | Central | 12 + 120107 | Jerry | Central | Tai Wo Hau | 14 + 120108 | Alan | Diamond Hill | Kwai Hing | 16 + 120109 | Eric | Jordan | Shek Kip Mei | 18 + 120110 | Frank | Lok Fu | Sunny Bay | 20 +(10 rows) + +The defined PARTITION cost START(3) END(21) EVERY (3) statement is in the first place and has START specified. Therefore, the range (MINVALUE, 3) will be automatically used as the first actual partition, and its name will be cost_0. +Other partitions are cost_1, ..., and cost_6. + +-- Query data in the cost_0 partition of the metro_ride_record table. +MogDB=# SELECT * FROM metro_ride_record PARTITION (cost_0); + record_number | name | enter_station | leave_station | ride_stations_number +---------------+----------------------+----------------------+----------------------+---------------------- + 120101 | Brain | Tung Chung | Tsing Yi | 2 +(1 row) + +-- Query data in the cost_1 partition of the metro_ride_record table. +MogDB=# SELECT * FROM metro_ride_record PARTITION (cost_1); + record_number | name | enter_station | leave_station | ride_stations_number +---------------+----------------------+----------------------+----------------------+---------------------- + 120102 | David | Po Lam | Yau Tong | 4 +(1 row) + +-- Query data in the cost_6 partition of the metro_ride_record table. +MogDB=# SELECT * FROM metro_ride_record PARTITION (cost_6); + record_number | name | enter_station | leave_station | ride_stations_number +---------------+----------------------+----------------------+----------------------+---------------------- + 120109 | Eric | Jordan | Shek Kip Mei | 18 + 120110 | Frank | Lok Fu | Sunny Bay | 20 +(2 rows) +``` + +Example 5: Execute **START(partition_value)** to create a START END range partitioned table named **graderecord**. There are three partitions, and their partition keys are of the INTEGER type. The partition ranges are as follows: 0 ≤ **grade** < 60, 60 ≤ **grade** < 90, and 90 ≤ **grade** < **MAXVALUE**. + +```sql +-- Create the graderecord partitioned table. +MogDB=# CREATE TABLE graderecord + ( + number INTEGER, + name CHAR(20), + class CHAR(20), + grade INTEGER + ) + PARTITION BY RANGE(grade) + ( + PARTITION pass START(60), + PARTITION excellent START(90) + ); + +-- Insert data into the partition. +MogDB=# insert into graderecord values('210101','Alan','21.01',92); +MogDB=# insert into graderecord values('210102','Ben','21.01',62); +MogDB=# insert into graderecord values('210103','Brain','21.01',26); +MogDB=# insert into graderecord values('210204','Carl','21.02',77); +MogDB=# insert into graderecord values('210205','David','21.02',47); +MogDB=# insert into graderecord values('210206','Eric','21.02',97); +MogDB=# insert into graderecord values('210307','Frank','21.03',90); +MogDB=# insert into graderecord values('210308','Gavin','21.03',100); +MogDB=# insert into graderecord values('210309','Henry','21.03',67); +MogDB=# insert into graderecord values('210410','Jack','21.04',75); +MogDB=# insert into graderecord values('210311','Jerry','21.04',60); + + +-- Query data in the graderecord table. +MogDB=# SELECT * FROM graderecord; + number | name | class | grade +--------+----------------------+----------------------+------- + 210103 | Brain | 21.01 | 26 + 210205 | David | 21.02 | 47 + 210102 | Ben | 21.01 | 62 + 210204 | Carl | 21.02 | 77 + 210309 | Henry | 21.03 | 67 + 210410 | Jack | 21.04 | 75 + 210311 | Jerry | 21.04 | 60 + 210101 | Alan | 21.01 | 92 + 210206 | Eric | 21.02 | 97 + 210307 | Frank | 21.03 | 90 + 210308 | Gavin | 21.03 | 100 +(11 rows) + +-- Query data in the pass partition of the graderecord table. +MogDB=# SELECT * FROM graderecord PARTITION (pass); +ERROR: partition "pass" of relation "graderecord" does not exist +The query fails. +The cause is that the defined PARTITION pass START(60), statement is in the first place and has START specified. Therefore, the range (MINVALUE, 60) will be automatically used as the first actual partition, and its name will be pass_0. +The name of the partition with the range of 60 ≤ grade < 90 is pass_1. + +-- Query data in the pass_0 partition of the graderecord table. +MogDB=# SELECT * FROM graderecord PARTITION (pass_0); + number | name | class | grade +--------+----------------------+----------------------+------- + 210103 | Brain | 21.01 | 26 + 210205 | David | 21.02 | 47 +(2 rows) + +-- Query data in the pass_1 partition of the graderecord table. +MogDB=# SELECT * FROM graderecord PARTITION (pass_1); + number | name | class | grade +--------+----------------------+----------------------+------- + 210102 | Ben | 21.01 | 62 + 210204 | Carl | 21.02 | 77 + 210309 | Henry | 21.03 | 67 + 210410 | Jack | 21.04 | 75 + 210311 | Jerry | 21.04 | 60 +(5 rows) + +-- Query data in the execllent partition of the graderecord table. +MogDB=# SELECT * FROM graderecord PARTITION (excellent); + number | name | class | grade +--------+----------------------+----------------------+------- + 210101 | Alan | 21.01 | 92 + 210206 | Eric | 21.02 | 97 + 210307 | Frank | 21.03 | 90 + 210308 | Gavin | 21.03 | 100 +(4 rows) +``` + +Example 6: Execute **END(partition_value | MAXVALUE)** to create a START END range partitioned table named **graderecord**. There are three partitions, and their partition keys are of the INTEGER type. The partition ranges are as follows: 0 ≤ **grade** < 60, 60 ≤ **grade** < 90, and 90 ≤ **grade** < **MAXVALUE**. + +```sql +-- Create the graderecord partitioned table. +MogDB=# CREATE TABLE graderecord + ( + number INTEGER, + name CHAR(20), + class CHAR(20), + grade INTEGER + ) + PARTITION BY RANGE(grade) + ( + PARTITION no_pass END(60), + PARTITION pass END(90), + PARTITION excellent END(MAXVALUE) + ); + +-- Insert data into the partition. +MogDB=# insert into graderecord values('210101','Alan','21.01',92); +MogDB=# insert into graderecord values('210102','Ben','21.01',62); +MogDB=# insert into graderecord values('210103','Brain','21.01',26); +MogDB=# insert into graderecord values('210204','Carl','21.02',77); +MogDB=# insert into graderecord values('210205','David','21.02',47); +MogDB=# insert into graderecord values('210206','Eric','21.02',97); +MogDB=# insert into graderecord values('210307','Frank','21.03',90); +MogDB=# insert into graderecord values('210308','Gavin','21.03',100); +MogDB=# insert into graderecord values('210309','Henry','21.03',67); +MogDB=# insert into graderecord values('210410','Jack','21.04',75); +MogDB=# insert into graderecord values('210311','Jerry','21.04',60); + + +-- Query data in the graderecord table. +MogDB=# SELECT * FROM graderecord; + number | name | class | grade +--------+----------------------+----------------------+------- + 210103 | Brain | 21.01 | 26 + 210205 | David | 21.02 | 47 + 210102 | Ben | 21.01 | 62 + 210204 | Carl | 21.02 | 77 + 210309 | Henry | 21.03 | 67 + 210410 | Jack | 21.04 | 75 + 210311 | Jerry | 21.04 | 60 + 210101 | Alan | 21.01 | 92 + 210206 | Eric | 21.02 | 97 + 210307 | Frank | 21.03 | 90 + 210308 | Gavin | 21.03 | 100 +(11 rows) + +-- Query data in the no_pass partition of the graderecord table. +MogDB=# SELECT * FROM graderecord PARTITION (no_pass); + number | name | class | grade +--------+----------------------+----------------------+------- + 210103 | Brain | 21.01 | 26 + 210205 | David | 21.02 | 47 +(2 rows) + +-- Query data in the pass partition of the graderecord table. +MogDB=# SELECT * FROM graderecord PARTITION (pass); + number | name | class | grade +--------+----------------------+----------------------+------- + 210102 | Ben | 21.01 | 62 + 210204 | Carl | 21.02 | 77 + 210309 | Henry | 21.03 | 67 + 210410 | Jack | 21.04 | 75 + 210311 | Jerry | 21.04 | 60 +(5 rows) + +-- Query data in the execllent partition of the graderecord table. +MogDB=# SELECT * FROM graderecord PARTITION (excellent); + number | name | class | grade +--------+----------------------+----------------------+------- + 210101 | Alan | 21.01 | 92 + 210206 | Eric | 21.02 | 97 + 210307 | Frank | 21.03 | 90 + 210308 | Gavin | 21.03 | 100 +(4 rows) +``` + +## Syntax for Creating a List Partitioned Table + +```sql +CREATE TABLE partition_table_name +( [column_name data_type ] + [, ... ] +) + PARTITION BY LIST (partition_key) + ( + PARTITION partition_name VALUES (list_values_clause) + [, ... ] + ); +``` + +## Parameters for Creating a List Partitioned Table + +- **partition_table_name** + + Specifies the name of the partitioned table. + +- **column_name** + + Specifies the name of the column to be created in the new table. + +- **data_type** + + Specifies the data type of the column. + +- **partition_key** + + Specifies the name of the partition key. + + The list partitioning policy supports only one column of partition keys. + +- **partition_name** + + Specifies the name of a range partition. + +- **list_values_clause** + + There are one or more key values of the corresponding partition. Use commas (,) to separate multiple key values. + +- **VALUES (DEFAULT)** + + If the added data contains key values that are not listed in **list_values_clause**, the data is stored in the partition corresponding to **VALUES (DEFAULT)**. + +- **MAXVALUE** + + Specifies the upper limit of the last range partition. + +## Example of Creating a List Partitioned Table + +Example 7: Create the **graderecord** list partitioned table. There are four partitions, and their partition keys are of the CHAR type. The partition ranges are 21.01, 21.02, 21.03, and 21.04. + +```sql +-- Create the graderecord partitioned table. +MogDB=# CREATE TABLE graderecord + ( + number INTEGER, + name CHAR(20), + class CHAR(20), + grade INTEGER + ) + PARTITION BY LIST(class) + ( + PARTITION class_01 VALUES ('21.01'), + PARTITION class_02 VALUES ('21.02'), + PARTITION class_03 VALUES ('21.03'), + PARTITION class_04 VALUES ('21.04') + ); + +-- Insert data into the partition. +MogDB=# insert into graderecord values('210101','Alan','21.01',92); +MogDB=# insert into graderecord values('210102','Ben','21.01',62); +MogDB=# insert into graderecord values('210103','Brain','21.01',26); +MogDB=# insert into graderecord values('210204','Carl','21.02',77); +MogDB=# insert into graderecord values('210205','David','21.02',47); +MogDB=# insert into graderecord values('210206','Eric','21.02',97); +MogDB=# insert into graderecord values('210307','Frank','21.03',90); +MogDB=# insert into graderecord values('210308','Gavin','21.03',100); +MogDB=# insert into graderecord values('210309','Henry','21.03',67); +MogDB=# insert into graderecord values('210410','Jack','21.04',75); +MogDB=# insert into graderecord values('210311','Jerry','21.04',60); + + +-- Query data in the graderecord table. +MogDB=# SELECT * FROM graderecord; + number | name | class | grade +--------+----------------------+----------------------+------- + 210410 | Jack | 21.04 | 75 + 210311 | Jerry | 21.04 | 60 + 210307 | Frank | 21.03 | 90 + 210308 | Gavin | 21.03 | 100 + 210309 | Henry | 21.03 | 67 + 210204 | Carl | 21.02 | 77 + 210205 | David | 21.02 | 47 + 210206 | Eric | 21.02 | 97 + 210101 | Alan | 21.01 | 92 + 210102 | Ben | 21.01 | 62 + 210103 | Brain | 21.01 | 26 +(11 rows) + +-- Query data in the class_01 partition of the graderecord table. +MogDB=# SELECT * FROM graderecord PARTITION (class_01); + number | name | class | grade +--------+----------------------+----------------------+------- + 210101 | Alan | 21.01 | 92 + 210102 | Ben | 21.01 | 62 + 210103 | Brain | 21.01 | 26 +(3 rows) + +-- Query data in the class_04 partition of the graderecord table. +MogDB=# SELECT * FROM graderecord PARTITION (class_04); + number | name | class | grade +--------+----------------------+----------------------+------- + 210410 | Jack | 21.04 | 75 + 210311 | Jerry | 21.04 | 60 +(2 rows) +``` + +## Syntax for Creating an Interval Partitioned Table + +Interval partitioning adds the definition of the interval value **PARTITION BY RANGE (partition_key)** on the basis of range partitioning. + +The syntax of the **VALUES LESS THAN** interval partition is as follows: + +```sql +CREATE TABLE partition_table_name +( [column_name data_type ] + [, ... ] +) + PARTITION BY RANGE (partition_key) + ( + INTERVAL ('interval_expr') + PARTITION partition_name VALUES LESS THAN (partition_value | MAXVALUE) + [, ... ] + ); +``` + +The syntax for creating a START END interval partitioned table is as follows: + +Method 1: By executing **START(partition_value) END (partition_value | MAXVALUE)** + +```sql +CREATE TABLE partition_table_name +( [column_name data_type ] + [, ... ] +) + PARTITION BY RANGE (partition_key) + ( + INTERVAL ('interval_expr') + PARTITION partition_name START(partition_value) END (partition_value | MAXVALUE) + [, ... ] + ); +``` + +Method 2: By executing **START(partition_value) END (partition_value) EVERY (interval_value)** + +```sql +CREATE TABLE partition_table_name +( [column_name data_type ] + [, ... ] + ) + PARTITION BY RANGE (partition_key) + ( + PARTITION partition_name START(partition_value) END (partition_value) EVERY (interval_value) + [, ... ] + ); +``` + +Method 3: By executing **START(partition_value)** + +```sql +CREATE TABLE partition_table_name +( [column_name data_type ] + [, ... ] + ) + PARTITION BY RANGE (partition_key) + ( + INTERVAL ('interval_expr') + PARTITION partition_name START(partition_value) + [, ... ] + ); +``` + +Method 4: By executing **END(partition_value | MAXVALUE)** + +```sql +CREATE TABLE partition_table_name +( [column_name data_type ] + [, ... ] + ) + PARTITION BY RANGE (partition_key) + INTERVAL ('interval_expr') + ( + PARTITION partition_name END(partition_value | MAXVALUE) + [, ... ] + ); +``` + +## Parameters for Creating an Interval Partitioned Table + +- **INTERVAL ('interval_expr')** + + Defines interval partitioning. Only the TIMESTAMP[(p)] [WITHOUT TIME ZONE], TIMESTAMP[(p)] [WITH TIME ZONE] and DATE data types are supported. + +- **interval_expr** + + Specifies the interval for automatically creating partitions, for example, 1 day or 1 month. + +- **partition_name** + + Specifies the name of a range partition. + + The partitions automatically created by the system are named **sys_p1**, **sys_p2**, **sys_p3**, and the like. + +## Example of Creating an Interval Partitioned Table + +Example 8: Creating the **sales_table** interval partitioned table. + +```sql +-- Create the sales_table partitioned table. +MogDB=# CREATE TABLE sales_table +( + order_no INTEGER NOT NULL, + goods_name CHAR(20) NOT NULL, + sales_date DATE NOT NULL, + sales_volume INTEGER, + sales_store CHAR(20) +) +PARTITION BY RANGE(sales_date) + INTERVAL ('1 month') + ( + PARTITION start VALUES LESS THAN('2021-01-01 00:00:00'), + PARTITION later VALUES LESS THAN('2021-01-10 00:00:00') + ); +-- Insert data into the later partition. +MogDB=# INSERT INTO sales_table VALUES(1, 'jacket', '2021-01-8 00:00:00', 3,'Alaska'); + +-- If you do not insert data into existing partitions, the system creates the sys_p1 partition. +MogDB=# INSERT INTO sales_table VALUES(2, 'hat', '2021-04-06 00:00:00', 255,'Clolorado'); + +-- If you do not insert data into existing partitions, the system creates the sys_p2 partition. +MogDB=# INSERT INTO sales_table VALUES(3, 'shirt', '2021-11-17 00:00:00', 7000,'Florida'); + +-- Insert data into the start partition. +MogDB=# INSERT INTO sales_table VALUES(4, 'coat', '2020-10-21 00:00:00', 9000,'Hawaii'); + +-- Query data in the sales_table table. +MogDB=# SELECT * FROM sales_table; + order_no | goods_name | sales_date | sales_volume | sales_store +----------+----------------------+---------------------+--------------+---------------------- + 4 | coat | 2020-10-21 00:00:00 | 9000 | Hawaii + 1 | jacket | 2021-01-08 00:00:00 | 3 | Alaska + 2 | hat | 2021-04-06 00:00:00 | 255 | Clolorado + 3 | shirt | 2021-11-17 00:00:00 | 7000 | Florida +(4 rows) + +-- Query data in the start partition of the sales_table table. In this example, sales_table PARTITION (start); is used to reference partitions. +MogDB=# SELECT * FROM sales_table PARTITION (start); + order_no | goods_name | sales_date | sales_volume | sales_store +----------+----------------------+---------------------+--------------+---------------------- + 4 | coat | 2020-10-21 00:00:00 | 9000 | Hawaii +(1 row) + +-- Query data in the later partition of the sales_table table. In this example, sales_table PARTITION (later); is used to reference partitions. +MogDB=# SELECT * FROM sales_table PARTITION (later); + order_no | goods_name | sales_date | sales_volume | sales_store +----------+----------------------+---------------------+--------------+---------------------- + 1 | jacket | 2021-01-08 00:00:00 | 3 | Alaska +(1 row) + +-- Query data in the sys_p1 partition of the sales_table table. In this example, sales_table PARTITION (sys_p1); is used to reference partitions. +MogDB=# SELECT * FROM sales_table PARTITION (sys_p1); + order_no | goods_name | sales_date | sales_volume | sales_store +----------+----------------------+---------------------+--------------+---------------------- + 2 | hat | 2021-04-06 00:00:00 | 255 | Clolorado +(1 row) + +-- Query data in the sys_p2 partition of the sales_table table. In this example, sales_table PARTITION (sys_p2); is used to reference partitions. +MogDB=# SELECT * FROM sales_table PARTITION (sys_p2); + order_no | goods_name | sales_date | sales_volume | sales_store +----------+----------------------+---------------------+--------------+---------------------- + 3 | shirt | 2021-11-17 00:00:00 | 7000 | Florida +(1 row) +``` + +## Syntax for Creating a Hash Partitioned Table + +```sql +CREATE TABLE partition_table_name +( [column_name data_type ] + [, ... ] +) + PARTITION BY HASH (partition_key) + (PARTITION partition_name ) + [, ... ] + ; +``` + +## Parameters for Creating a Hash Partitioned Table + +- **partition_table_name** + + Specifies the name of the partitioned table. + +- **column_name** + + Specifies the name of the column to be created in the new table. + +- **data_type** + + Specifies the data type of the column. + +- **partition_key** + + Specifies the name of the partition key. The hash partitioning policy supports only one column of partition keys. + +- **partition_name** + + Specifies the name of a hash partition. The number of hash partitions to be created is the same as the number of partition names. + +## Example of Creating a Hash Partitioned Table + +Example 9: Create the **hash_partition_table** hash partitioned table. + +```sql +-- Create the hash_partition_table hash partitioned table. +MogDB=# create table hash_partition_table ( +col1 int, +col2 int) +partition by hash(col1) +( +partition p1, +partition p2 +); + +-- Insert data. +MogDB=# INSERT INTO hash_partition_table VALUES(1, 1); +INSERT 0 1 +MogDB=# INSERT INTO hash_partition_table VALUES(2, 2); +INSERT 0 1 +MogDB=# INSERT INTO hash_partition_table VALUES(3, 3); +INSERT 0 1 +MogDB=# INSERT INTO hash_partition_table VALUES(4, 4); +INSERT 0 1 + +-- View the data. +MogDB=# select * from hash_partition_table partition (p1); + col1 | col2 +------+------ + 3 | 3 + 4 | 4 +(2 rows) + +MogDB=# select * from hash_partition_table partition (p2); + col1 | col2 +------+------ + 1 | 1 + 2 | 2 +(2 rows) +``` + +## Syntax for Importing Data + +Import a single row of data. + +```sql +INSERT INTO partition_table_name [ ( column_name [, ...] ) ] VALUES [ ( value )[, ...] ]; +``` + +Import data from an existing table with the same structure. + +```sql +INSERT INTO partition_table_name SELECT * FROM source_table_name +``` + +## Parameters for Importing Data + +- **partition_table_name** + + Specifies the name of the partitioned table. + +- **column_name** + + Specifies a column name in the partitioned table. It can be omitted. + +- **value** + + Specifies column values. + + - If the value of **column_name** is provided, the value provided by the **value** clause is associated with the corresponding column from left to right. + - If the value of **column_name** is not provided, the value provided by the **value** clause is associated with the column specified by **partition_table_name** from left to right. + +## Example of Importing Data + +Example 10: + +```sql +-- Create the employees_table partitioned table. +MogDB=# CREATE TABLE employees_table +( + employee_id INTEGER NOT NULL, + employee_name CHAR(20) NOT NULL, + onboarding_date DATE NOT NULL, + position CHAR(20) +) +PARTITION BY RANGE(onboarding_date) +( + PARTITION founders VALUES LESS THAN('2000-01-01 00:00:00'), + PARTITION senate VALUES LESS THAN('2010-01-01 00:00:00'), + PARTITION seniors VALUES LESS THAN('2020-01-01 00:00:00'), + PARTITION newcomer VALUES LESS THAN(MAXVALUE) +); + +-- Insert data into the founders partition. +MogDB=# INSERT INTO employees_table VALUES(1, 'SMITH', '1997-01-10 00:00:00','Manager'); + +-- View data in the founders partition. +MogDB=# select * from employees_table partition (founders); + +-- Create the employees_data_table table. +MogDB=# CREATE TABLE employees_data_table +( + employee_id INTEGER NOT NULL, + employee_name CHAR(20) NOT NULL, + onboarding_date DATE NOT NULL, + position CHAR(20) +); +-- Insert data. +MogDB=# insert into employees_data_table (employee_id, employee_name, onboarding_date, position) VALUES +(2, 'JONES', '2001-05-06 00:00:00', 'Supervisor'), +(3, 'WILLIAMS', '2011-09-17 00:00:00', 'Engineer'), +(4, 'TAYLOR', '2021-10-21 00:00:00', 'Clerk'); + +-- View table data. +MogDB=# select * from employees_data_table; + +-- Import data to the employees_table table. +MogDB=# INSERT INTO employees_table SELECT * FROM employees_data_table; + +-- View data in the senate partition. +MogDB=# select * from employees_table partition (senate); + employee_id | employee_name | onboarding_date | position +-------------+----------------------+---------------------+---------------------- + 2 | JONES | 2001-05-06 00:00:00 | Supervisor +(1 row) + +-- View data in the seniors partition. +MogDB=# select * from employees_table partition (seniors); + employee_id | employee_name | onboarding_date | position +-------------+----------------------+---------------------+---------------------- + 3 | WILLIAMS | 2011-09-17 00:00:00 | Engineer +(1 row) + +-- View data in the newcomer partition. +MogDB=# select * from employees_table partition (newcomer); + employee_id | employee_name | onboarding_date | position +-------------+----------------------+---------------------+---------------------- + 4 | TAYLOR | 2021-10-21 00:00:00 | Clerk +(1 row) +``` + +## Syntax for Modifying a Partitioned Table + +- Delete a partition. + + ```sql + ALTER TABLE partition_table_name DROP PARTITION partition_name; + ``` + +- Add a partition. + + ```sql + ALTER TABLE partition_table_name ADD {partition_less_than_item | partition_start_end_item| partition_list_item }; + ``` + +- Rename a partition. + + ```sql + ALTER TABLE partition_table_name RENAME PARTITION partition_name TO partition_new_name; + ``` + +- Split a partition (Specify the syntax of **split_partition_value**). + + ```sql + ALTER TABLE partition_table_name SPLIT PARTITION partition_name AT ( split_partition_value ) INTO ( PARTITION partition_new_name1, PARTITION partition_new_name2); + ``` + +- Split a partition (Specify the syntax of the partition range). + + ```sql + ALTER TABLE partition_table_name SPLIT PARTITION partition_name INTO { ( partition_less_than_item [, ...] ) | ( partition_start_end_item [, ...] ) }; + ``` + +- Combine partitions. + + ```sql + ALTER TABLE partition_table_name MERGE PARTITIONS { partition_name } [, ...] INTO PARTITION partition_name; + ``` + +## Parameters for Modifying a Partitioned Table + +- **partition_table_name** + + Specifies the name of the partitioned table. + +- **partition_name** + + Specifies the partition name. + +- **split_partition_value** + + Specifies the split point. + +- **PARTITION partition_new_name1, PARTITION partition_new_name2** + + Specifies the two partitions that are split based on the split point. + +- **partition_less_than_item** + + Specifies the description statement of a partition item. The syntax is as follows: + + ```sql + PARTITION partition_name VALUES LESS THAN ( { partition_value | MAXVALUE } [, ...] ) + ``` + + The usage is the same as that in [Syntax for Creating a VALUES LESS THAN Range Partitioned Table](#syntax-for-creating-a-values-less-than-range-partitioned-table). + +- **partition_start_end_item** + + Specifies the description statement of a partition item. The syntax is as follows: + + ```sql + PARTITION partition_name + {START(partition_value) END (partition_value) EVERY (interval_value)} | + {START(partition_value) END ({partition_value | MAXVALUE})} | + {START(partition_value)} | + {END({partition_value | MAXVALUE})} + ``` + + The usage is the same as that in [Syntax for Creating a START END Range Partitioned Table](#syntax-for-creating-a-start-end-range-partitioned-table). + +- **partition_list_item** + + Specifies the description statement of a partition item. The syntax is as follows: + + ```sql + PARTITION partition_name VALUES (list_values_clause) + ``` + + The usage is the same as that in [Syntax for Creating a List Partitioned Table](#Syntax for Creating a List Partitioned Table). + +- **split_point_clause** + + Specifies the split point when a partition is split. + +- **partition_value** + + Specifies the key value of a partition. + +## Example of Modifying a Partitioned Table + +Example 11: + +```sql +-- Create the employees_table partitioned table. +MogDB=# CREATE TABLE employees_table +( + employee_id INTEGER NOT NULL, + employee_name CHAR(20) NOT NULL, + onboarding_date DATE NOT NULL, + position CHAR(20) +) +PARTITION BY RANGE(onboarding_date) +( + PARTITION founders VALUES LESS THAN('2000-01-01 00:00:00'), + PARTITION senate VALUES LESS THAN('2010-01-01 00:00:00'), + PARTITION seniors VALUES LESS THAN('2020-01-01 00:00:00'), + PARTITION newcomer VALUES LESS THAN(MAXVALUE) +); + +-- Insert data. +MogDB=# INSERT INTO employees_table VALUES +(1, 'SMITH', '1997-01-10 00:00:00','Manager'), +(2, 'JONES', '2001-05-06 00:00:00', 'Supervisor'), +(3, 'WILLIAMS', '2011-09-17 00:00:00', 'Engineer'), +(4, 'TAYLOR', '2021-10-21 00:00:00', 'Clerk'); + +View the newcomer partition. +MogDB=# SELECT * FROM employees_table PARTITION (newcomer); + employee_id | employee_name | onboarding_date | position +-------------+----------------------+---------------------+---------------------- + 4 | TAYLOR | 2021-10-21 00:00:00 | Clerk +(1 row) + +-- Delete the newcomer partition. +MogDB=# ALTER TABLE employees_table DROP PARTITION newcomer; +ALTER TABLE + +-- View data in the newcomer partition. +MogDB=# select * from employees_table partition (newcomer); +ERROR: partition "newcomer" of relation "employees_table" does not exist + +-- Add the fresh partition. +MogDB=# ALTER TABLE employees_table ADD PARTITION fresh VALUES LESS THAN ('2040-01-01 00:00:00'); +ALTER TABLE + +-- Use 2030-01-01 00:00:00 as the split point to split the fresh partition into the current and future partitions. +MogDB=# ALTER TABLE employees_table SPLIT PARTITION fresh AT ('2030-01-01 00:00:00') INTO (PARTITION current, PARTITION future); +ALTER TABLE + +-- Change the name of the current partition to now. +MogDB=# ALTER TABLE employees_table RENAME PARTITION current TO now; +ALTER TABLE + +-- Combine the founders and senate partitions into the original partition. +MogDB=# ALTER TABLE employees_table MERGE PARTITIONS founders, senate INTO PARTITION original; +``` + +## Syntax for Deleting a Partitioned Table + +```sql +DROP TABLE partition_table_name; +``` + +## Parameters for Deleting a Partitioned Table + +- **partition_table_name** + + Specifies the name of the partitioned table. + +## Example of Deleting a Partitioned Table + +Example 12: + +```sql +-- Delete the employees_table partitioned table. +MogDB=# DROP TABLE employees_table; +DROP TABLE ``` \ No newline at end of file diff --git a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/partition-table.md b/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/partition-table.md index 6cc61765..e010d305 100644 --- a/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/partition-table.md +++ b/product/en/docs-mogdb/v5.1/reference-guide/sql-reference/partition-table.md @@ -11,23 +11,23 @@ If a table contains a large amount of data, data query and operation efficiency MogDB supports the following types of partitioned tables: -- [Range partitioned table](#Syntax for Creating a VALUES LESS THAN Range Partitioned Table): One or more columns are divided into multiple ranges. A partition is created for each range to store data. For example, sales data can be partitioned by month. -- [List partitioned table](#Syntax for Creating a List Partitioned Table): Partitions are created based on values in a column. For example, sales data is divided by sales store. -- [Interval partitioned table](#Syntax for Creating an Interval Partitioned Table): It is a special type of range partitions. The interval value definition is added. If no matched partition is found when a record is inserted, partitions can be automatically created based on the interval. -- [Hash partitioned table](#Syntax for Creating a Hash Partitioned Table): The modulus and remainder are specified for each partition based on a column of the table, and the records to be inserted into the table are allocated to the corresponding partitions. +- [Range partitioned table](#syntax-for-creating-a-values-less-than-range-partitioned-table): One or more columns are divided into multiple ranges. A partition is created for each range to store data. For example, sales data can be partitioned by month. +- [List partitioned table](#syntax-for-creating-a-list-partitioned-table): Partitions are created based on values in a column. For example, sales data is divided by sales store. +- [Interval partitioned table](#syntax-for-creating-an-interval-partitioned-table): It is a special type of range partitions. The interval value definition is added. If no matched partition is found when a record is inserted, partitions can be automatically created based on the interval. +- [Hash partitioned table](#syntax-for-creating-a-hash-partitioned-table): The modulus and remainder are specified for each partition based on a column of the table, and the records to be inserted into the table are allocated to the corresponding partitions. In addition to creating a partitioned table, you can perform the following operations: -- [Querying a partitioned table](#Syntax for Querying a Partitioned Table): Data is queried by partition name or value in a partition. -- [Importing data](#Syntax for Importing Data): Data is imported directly or from an existing table. -- [Modifying a partitioned table](#Syntax for Modifying a Partitioned Table): Partitions are added, deleted,split, or combined, or partition names are changed. -- [Deleting a partitioned table](#Syntax for Deleting a Partitioned Table): The operation is the same as that of deleting a common table. +- [Querying a partitioned table](#syntax-for-querying-a-partitioned-table): Data is queried by partition name or value in a partition. +- [Importing data](#syntax-for-importing-data): Data is imported directly or from an existing table. +- [Modifying a partitioned table](#syntax-for-modifying-a-partitioned-table): Partitions are added, deleted,split, or combined, or partition names are changed. +- [Deleting a partitioned table](#syntax-for-deleting-a-partitioned-table): The operation is the same as that of deleting a common table. ## Classification of Range Partitioned Tables Range partitioned tables are classified into the following types: -- [VALUES LESS THAN](#Syntax for Creating a VALUES LESS THAN Range Partitioned Table):specifies the partition range based on the upper limit of each partition. Upper limit of the previous partition ≤ Range of the partition ≤ Upper limit of the current partition. +- [VALUES LESS THAN](#syntax-for-creating-a-values-less-than-range-partitioned-table):specifies the partition range based on the upper limit of each partition. Upper limit of the previous partition ≤ Range of the partition ≤ Upper limit of the current partition. - [START END](#Syntax for Creating a START END Range Partitioned Table):Partitioning is performed in the following methods. - [START(partition_value) END (partition_value | MAXVALUE)](#se); - [START(partition_value)](#s); @@ -37,14 +37,14 @@ Range partitioned tables are classified into the following types: ## Syntax for Creating a VALUES LESS THAN Range Partitioned Table -``` +```sql CREATE TABLE partition_table_name ( [column_name data_type ] [, ... ] ) PARTITION BY RANGE (partition_key) ( - PARTITION partition_name VALUES LESS THAN (partition_value | MAXVALUE}) + PARTITION partition_name VALUES LESS THAN (partition_value | MAXVALUE) [, ... ] ); ``` @@ -121,7 +121,7 @@ MogDB=# INSERT INTO sales_table VALUES(4, 'coat', '2021-10-21 00:00:00', 9,'Hawa ## Syntax for Querying a Partitioned Table -``` +```sql SELECT * FROM partition_table_name PARTITION { ( partition_name ) | FOR ( partition_value [, ...] ) } ``` @@ -181,7 +181,7 @@ A START END range partitioned table can be created by different methods, and the - Method 1: By executing **START(partition_value) END (partition_value | MAXVALUE)** - ``` + ```sql CREATE TABLE partition_table_name ( [column_name data_type ] [, ... ] @@ -195,11 +195,11 @@ A START END range partitioned table can be created by different methods, and the - Method 2: By executing **START(partition_value)** - ``` + ```sql CREATE TABLE partition_table_name ( [column_name data_type ] [, ... ] - ] ) + ) PARTITION BY RANGE (partition_key) ( PARTITION partition_name START(partition_value) @@ -209,11 +209,11 @@ A START END range partitioned table can be created by different methods, and the - Method 3: By executing **END(partition_value | MAXVALUE)** - ``` + ```sql CREATE TABLE partition_table_name ( [column_name data_type ] [, ... ] - ] ) + ) PARTITION BY RANGE (partition_key) ( PARTITION partition_name END(partition_value | MAXVALUE) @@ -223,11 +223,11 @@ A START END range partitioned table can be created by different methods, and the - Method 4: By executing **START(partition_value) END (partition_value) EVERY (interval_value)** - ``` + ```sql CREATE TABLE partition_table_name ( [column_name data_type ] [, ... ] - ] ) + ) PARTITION BY RANGE (partition_key) ( PARTITION partition_name START(partition_value) END (partition_value) EVERY (interval_value) @@ -608,7 +608,7 @@ MogDB=# SELECT * FROM graderecord PARTITION (excellent); ## Syntax for Creating a List Partitioned Table -``` +```sql CREATE TABLE partition_table_name ( [column_name data_type ] [, ... ] @@ -732,7 +732,7 @@ Interval partitioning adds the definition of the interval value **PARTITION BY R The syntax of the **VALUES LESS THAN** interval partition is as follows: -``` +```sql CREATE TABLE partition_table_name ( [column_name data_type ] [, ... ] @@ -740,7 +740,7 @@ CREATE TABLE partition_table_name PARTITION BY RANGE (partition_key) ( INTERVAL ('interval_expr') - PARTITION partition_name VALUES LESS THAN (partition_value | MAXVALUE}) + PARTITION partition_name VALUES LESS THAN (partition_value | MAXVALUE) [, ... ] ); ``` @@ -749,7 +749,7 @@ The syntax for creating a START END interval partitioned table is as follows: Method 1: By executing **START(partition_value) END (partition_value | MAXVALUE)** -``` +```sql CREATE TABLE partition_table_name ( [column_name data_type ] [, ... ] @@ -764,11 +764,11 @@ CREATE TABLE partition_table_name Method 2: By executing **START(partition_value) END (partition_value) EVERY (interval_value)** -``` +```sql CREATE TABLE partition_table_name ( [column_name data_type ] [, ... ] -] ) + ) PARTITION BY RANGE (partition_key) ( PARTITION partition_name START(partition_value) END (partition_value) EVERY (interval_value) @@ -778,11 +778,11 @@ CREATE TABLE partition_table_name Method 3: By executing **START(partition_value)** -``` +```sql CREATE TABLE partition_table_name ( [column_name data_type ] [, ... ] -] ) + ) PARTITION BY RANGE (partition_key) ( INTERVAL ('interval_expr') @@ -793,11 +793,11 @@ CREATE TABLE partition_table_name Method 4: By executing **END(partition_value | MAXVALUE)** -``` +```sql CREATE TABLE partition_table_name ( [column_name data_type ] [, ... ] -] ) + ) PARTITION BY RANGE (partition_key) INTERVAL ('interval_expr') ( @@ -895,7 +895,7 @@ MogDB=# SELECT * FROM sales_table PARTITION (sys_p2); ## Syntax for Creating a Hash Partitioned Table -``` +```sql CREATE TABLE partition_table_name ( [column_name data_type ] [, ... ] @@ -903,7 +903,7 @@ CREATE TABLE partition_table_name PARTITION BY HASH (partition_key) (PARTITION partition_name ) [, ... ] - ); + ; ``` ## Parameters for Creating a Hash Partitioned Table @@ -973,13 +973,13 @@ MogDB=# select * from hash_partition_table partition (p2); Import a single row of data. -``` +```sql INSERT INTO partition_table_name [ ( column_name [, ...] ) ] VALUES [ ( value )[, ...] ]; ``` Import data from an existing table with the same structure. -``` +```sql INSERT INTO partition_table_name SELECT * FROM source_table_name ``` @@ -1073,37 +1073,37 @@ MogDB=# select * from employees_table partition (newcomer); - Delete a partition. - ``` + ```sql ALTER TABLE partition_table_name DROP PARTITION partition_name; ``` - Add a partition. - ``` + ```sql ALTER TABLE partition_table_name ADD {partition_less_than_item | partition_start_end_item| partition_list_item }; ``` - Rename a partition. - ``` + ```sql ALTER TABLE partition_table_name RENAME PARTITION partition_name TO partition_new_name; ``` - Split a partition (Specify the syntax of **split_partition_value**). - ``` + ```sql ALTER TABLE partition_table_name SPLIT PARTITION partition_name AT ( split_partition_value ) INTO ( PARTITION partition_new_name1, PARTITION partition_new_name2); ``` - Split a partition (Specify the syntax of the partition range). - ``` + ```sql ALTER TABLE partition_table_name SPLIT PARTITION partition_name INTO { ( partition_less_than_item [, ...] ) | ( partition_start_end_item [, ...] ) }; ``` - Combine partitions. - ``` + ```sql ALTER TABLE partition_table_name MERGE PARTITIONS { partition_name } [, ...] INTO PARTITION partition_name; ``` @@ -1129,31 +1129,31 @@ MogDB=# select * from employees_table partition (newcomer); Specifies the description statement of a partition item. The syntax is as follows: - ``` + ```sql PARTITION partition_name VALUES LESS THAN ( { partition_value | MAXVALUE } [, ...] ) ``` - The usage is the same as that in [Syntax for Creating a VALUES LESS THAN Range Partitioned Table](#Syntax for Creating a VALUES LESS THAN Range Partitioned Table). + The usage is the same as that in [Syntax for Creating a VALUES LESS THAN Range Partitioned Table](#syntax-for-creating-a-values-less-than-range-partitioned-table). - **partition_start_end_item** Specifies the description statement of a partition item. The syntax is as follows: - ``` - PARTITION partition_name { + ```sql + PARTITION partition_name {START(partition_value) END (partition_value) EVERY (interval_value)} | {START(partition_value) END ({partition_value | MAXVALUE})} | {START(partition_value)} | {END({partition_value | MAXVALUE})} ``` - The usage is the same as that in [Syntax for Creating a START END Range Partitioned Table](#Syntax for Creating a START END Range Partitioned Table). + The usage is the same as that in [Syntax for Creating a START END Range Partitioned Table](#syntax-for-creating-a-start-end-range-partitioned-table). - **partition_list_item** Specifies the description statement of a partition item. The syntax is as follows: - ``` + ```sql PARTITION partition_name VALUES (list_values_clause) ``` @@ -1228,7 +1228,7 @@ MogDB=# ALTER TABLE employees_table MERGE PARTITIONS founders, senate INTO PART ## Syntax for Deleting a Partitioned Table -``` +```sql DROP TABLE partition_table_name; ``` diff --git a/product/zh/docs-mogdb/v5.0/reference-guide/sql-reference/partition-table.md b/product/zh/docs-mogdb/v5.0/reference-guide/sql-reference/partition-table.md index 0a75cc88..b34613aa 100644 --- a/product/zh/docs-mogdb/v5.0/reference-guide/sql-reference/partition-table.md +++ b/product/zh/docs-mogdb/v5.0/reference-guide/sql-reference/partition-table.md @@ -44,7 +44,7 @@ CREATE TABLE partition_table_name ) PARTITION BY RANGE (partition_key) ( - PARTITION partition_name VALUES LESS THAN (partition_value | MAXVALUE}) + PARTITION partition_name VALUES LESS THAN (partition_value | MAXVALUE) [, ... ] ); ``` @@ -199,7 +199,7 @@ START END范围分区表有多种表达方式,而且这些方式可以在一 CREATE TABLE partition_table_name ( [column_name data_type ] [, ... ] - ] ) + ) PARTITION BY RANGE (partition_key) ( PARTITION partition_name START(partition_value) @@ -209,11 +209,11 @@ START END范围分区表有多种表达方式,而且这些方式可以在一 - 方式三:END(partition_value | MAXVALUE)方式 - ``` + ```sql CREATE TABLE partition_table_name ( [column_name data_type ] [, ... ] - ] ) + ) PARTITION BY RANGE (partition_key) ( PARTITION partition_name END(partition_value | MAXVALUE) @@ -227,7 +227,7 @@ START END范围分区表有多种表达方式,而且这些方式可以在一 CREATE TABLE partition_table_name ( [column_name data_type ] [, ... ] - ] ) + ) PARTITION BY RANGE (partition_key) ( PARTITION partition_name START(partition_value) END (partition_value) EVERY (interval_value) @@ -740,7 +740,7 @@ CREATE TABLE partition_table_name PARTITION BY RANGE (partition_key) ( INTERVAL ('interval_expr') - PARTITION partition_name VALUES LESS THAN (partition_value | MAXVALUE}) + PARTITION partition_name VALUES LESS THAN (partition_value | MAXVALUE) [, ... ] ); ``` @@ -768,7 +768,7 @@ CREATE TABLE partition_table_name CREATE TABLE partition_table_name ( [column_name data_type ] [, ... ] -] ) + ) PARTITION BY RANGE (partition_key) ( PARTITION partition_name START(partition_value) END (partition_value) EVERY (interval_value) @@ -782,7 +782,7 @@ CREATE TABLE partition_table_name CREATE TABLE partition_table_name ( [column_name data_type ] [, ... ] -] ) + ) PARTITION BY RANGE (partition_key) ( INTERVAL ('interval_expr') @@ -797,7 +797,7 @@ CREATE TABLE partition_table_name CREATE TABLE partition_table_name ( [column_name data_type ] [, ... ] -] ) + ) PARTITION BY RANGE (partition_key) INTERVAL ('interval_expr') ( @@ -903,7 +903,7 @@ CREATE TABLE partition_table_name PARTITION BY HASH (partition_key) (PARTITION partition_name ) [, ... ] - ); + ; ``` ## 哈希分区表参数说明 @@ -1140,7 +1140,7 @@ MogDB=# select * from employees_table partition (newcomer); 分区项的描述语句,语法为: ```sql - PARTITION partition_name { + PARTITION partition_name {START(partition_value) END (partition_value) EVERY (interval_value)} | {START(partition_value) END ({partition_value | MAXVALUE})} | {START(partition_value)} | diff --git a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/partition-table.md b/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/partition-table.md index ab9954b5..e3e98623 100644 --- a/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/partition-table.md +++ b/product/zh/docs-mogdb/v5.1/reference-guide/sql-reference/partition-table.md @@ -44,7 +44,7 @@ CREATE TABLE partition_table_name ) PARTITION BY RANGE (partition_key) ( - PARTITION partition_name VALUES LESS THAN (partition_value | MAXVALUE}) + PARTITION partition_name VALUES LESS THAN (partition_value | MAXVALUE) [, ... ] ); ``` @@ -199,7 +199,7 @@ START END范围分区表有多种表达方式,而且这些方式可以在一 CREATE TABLE partition_table_name ( [column_name data_type ] [, ... ] - ] ) + ) PARTITION BY RANGE (partition_key) ( PARTITION partition_name START(partition_value) @@ -213,7 +213,7 @@ START END范围分区表有多种表达方式,而且这些方式可以在一 CREATE TABLE partition_table_name ( [column_name data_type ] [, ... ] - ] ) + ) PARTITION BY RANGE (partition_key) ( PARTITION partition_name END(partition_value | MAXVALUE) @@ -227,7 +227,7 @@ START END范围分区表有多种表达方式,而且这些方式可以在一 CREATE TABLE partition_table_name ( [column_name data_type ] [, ... ] - ] ) + ) PARTITION BY RANGE (partition_key) ( PARTITION partition_name START(partition_value) END (partition_value) EVERY (interval_value) @@ -768,7 +768,7 @@ CREATE TABLE partition_table_name CREATE TABLE partition_table_name ( [column_name data_type ] [, ... ] -] ) + ) PARTITION BY RANGE (partition_key) ( PARTITION partition_name START(partition_value) END (partition_value) EVERY (interval_value) @@ -782,7 +782,7 @@ CREATE TABLE partition_table_name CREATE TABLE partition_table_name ( [column_name data_type ] [, ... ] -] ) + ) PARTITION BY RANGE (partition_key) ( INTERVAL ('interval_expr') @@ -797,7 +797,7 @@ CREATE TABLE partition_table_name CREATE TABLE partition_table_name ( [column_name data_type ] [, ... ] -] ) + ) PARTITION BY RANGE (partition_key) INTERVAL ('interval_expr') ( @@ -903,7 +903,7 @@ CREATE TABLE partition_table_name PARTITION BY HASH (partition_key) (PARTITION partition_name ) [, ... ] - ); + ; ``` ## 哈希分区表参数说明 @@ -1140,7 +1140,7 @@ MogDB=# select * from employees_table partition (newcomer); 分区项的描述语句,语法为: ```sql - PARTITION partition_name { + PARTITION partition_name {START(partition_value) END (partition_value) EVERY (interval_value)} | {START(partition_value) END ({partition_value | MAXVALUE})} | {START(partition_value)} | -- Gitee From 7df8c480ccbc118fe122562917f974972e8ae380 Mon Sep 17 00:00:00 2001 From: spaceoddity91719 Date: Fri, 24 Nov 2023 17:22:37 +0800 Subject: [PATCH 2/2] =?UTF-8?q?update(mogdb):=E8=A1=A5=E5=85=85rw=5Ftimeou?= =?UTF-8?q?t=E5=8F=82=E6=95=B0=E6=8F=8F=E8=BF=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dev/4-development-based-on-libpq/link-parameters.md | 2 +- .../dev/4-development-based-on-libpq/link-parameters.md | 2 +- .../dev/4-development-based-on-libpq/link-parameters.md | 2 +- .../dev/4-development-based-on-libpq/link-parameters.md | 2 +- .../dev/4-development-based-on-libpq/link-parameters.md | 2 +- .../dev/4-development-based-on-libpq/link-parameters.md | 2 +- .../dev/4-development-based-on-libpq/link-parameters.md | 2 +- .../dev/4-development-based-on-libpq/link-parameters.md | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/product/en/docs-mogdb/v3.0/developer-guide/dev/4-development-based-on-libpq/link-parameters.md b/product/en/docs-mogdb/v3.0/developer-guide/dev/4-development-based-on-libpq/link-parameters.md index 1f84feec..b968a8b5 100644 --- a/product/en/docs-mogdb/v3.0/developer-guide/dev/4-development-based-on-libpq/link-parameters.md +++ b/product/en/docs-mogdb/v3.0/developer-guide/dev/4-development-based-on-libpq/link-parameters.md @@ -27,7 +27,7 @@ date: 2022-04-26 | keepalives_idle | The number of seconds of inactivity after which TCP should send a keepalive message to the server. The value **0** indicates that the default value is used. Ignore this parameter for Unix-domain connections or if keep-alive is disabled. | | keepalives_interval | The number of seconds after which a TCP keepalive message that is not acknowledged by the server should be retransmitted. The value **0** indicates that the default value is used. Ignore this parameter for Unix-domain connections or if keep-alive is disabled. | | keepalives_count | Adds command-line options to send to the server at runtime. For example, adding **-c comm_debug_mode=off** to set the value of the GUC parameter **comm_debug_mode** to **off**. | -| rw_timeout | Sets the read and write timeout interval of the client connection. | +| rw_timeout | Sets the read and write timeout interval of the client connection.
Note: when this parameter value is less than 5s, the timeout is handled as 5s. | | sslmode | Specifies whether to enable SSL encryption.
- **disable**: SSL connection is disabled.
- **allow**: If the database server requires SSL connection, SSL connection can be enabled. However, authenticity of the database server will not be verified.
- **prefer**: If the database supports SSL connection, SSL connection is preferred. However, authenticity of the database server will not be verified.
- **require**: SSL connection is required and data is encrypted. However, authenticity of the database server will not be verified.
- **verify-ca**: SSL connection is required. Currently, Windows ODBC does not support cert authentication.
- **verify-full**: SSL connection is required. Currently, Windows ODBC does not support cert authentication. | | sslcompression | If this parameter is set to **1** (default value), the data transmitted over the SSL connection is compressed (this requires that the OpenSSL version be 0.9.8 or later). If this parameter is set to **0**, compression will be disabled (this requires OpenSSL 1.0.0 or later). If a connection without SSL is established, this parameter is ignored. If the OpenSSL version in use does not support this parameter, it will also be ignored. Compression takes up CPU time, but it increases throughput when the bottleneck is the network. If CPU performance is a limiting factor, disabling compression can improve response time and throughput. | | sslcert | This parameter specifies the file name of the client SSL certificate. It replaces the default **~/.postgresql/postgresql.crt**. If no SSL connection is established, this parameter is ignored. | diff --git a/product/en/docs-mogdb/v3.1/developer-guide/dev/4-development-based-on-libpq/link-parameters.md b/product/en/docs-mogdb/v3.1/developer-guide/dev/4-development-based-on-libpq/link-parameters.md index 981a99be..80dfe22c 100644 --- a/product/en/docs-mogdb/v3.1/developer-guide/dev/4-development-based-on-libpq/link-parameters.md +++ b/product/en/docs-mogdb/v3.1/developer-guide/dev/4-development-based-on-libpq/link-parameters.md @@ -28,7 +28,7 @@ date: 2022-04-26 | keepalives_interval | The number of seconds after which a TCP keepalive message that is not acknowledged by the server should be retransmitted. The value **0** indicates that the default value is used. Ignore this parameter for Unix-domain connections or if keep-alive is disabled. | | keepalives_count | Controls the number of times for TCP to send information to keep the activation. **0** indicates that the default value is used. If the link is made using the Unix domain socket or `keepalives` is disabled, ignore this parameter. | | tcp_user_timeout | Specifies the maximum time duration for the transmitted data being kept in unconfirmed staus before the TCP connection is forcibly disabled on an OS supporting the TCP_USER_TIMEOUT socket option. **0** indicates that the default value is used. If the link is made using the Unix domain socket, ignore this parameter. | -| rw_timeout | Sets the read and write timeout interval of the client connection. | +| rw_timeout | Sets the read and write timeout interval of the client connection.
Note: when this parameter value is less than 5s, the timeout is handled as 5s.| | sslmode | Specifies whether to enable SSL encryption.
- **disable**: SSL connection is disabled.
- **allow**: If the database server requires SSL connection, SSL connection can be enabled. However, authenticity of the database server will not be verified.
- **prefer**: If the database supports SSL connection, SSL connection is preferred. However, authenticity of the database server will not be verified.
- **require**: SSL connection is required and data is encrypted. However, authenticity of the database server will not be verified.
- **verify-ca**: SSL connection is required. Currently, Windows ODBC does not support cert authentication.
- **verify-full**: SSL connection is required. Currently, Windows ODBC does not support cert authentication. | | sslcompression | If this parameter is set to **1** (default value), the data transmitted over the SSL connection is compressed (this requires that the OpenSSL version be 0.9.8 or later). If this parameter is set to **0**, compression will be disabled (this requires OpenSSL 1.0.0 or later). If a connection without SSL is established, this parameter is ignored. If the OpenSSL version in use does not support this parameter, it will also be ignored. Compression takes up CPU time, but it increases throughput when the bottleneck is the network. If CPU performance is a limiting factor, disabling compression can improve response time and throughput. | | sslcert | This parameter specifies the file name of the client SSL certificate. It replaces the default **~/.postgresql/postgresql.crt**. If no SSL connection is established, this parameter is ignored. | diff --git a/product/en/docs-mogdb/v5.0/developer-guide/dev/4-development-based-on-libpq/link-parameters.md b/product/en/docs-mogdb/v5.0/developer-guide/dev/4-development-based-on-libpq/link-parameters.md index 981a99be..80dfe22c 100644 --- a/product/en/docs-mogdb/v5.0/developer-guide/dev/4-development-based-on-libpq/link-parameters.md +++ b/product/en/docs-mogdb/v5.0/developer-guide/dev/4-development-based-on-libpq/link-parameters.md @@ -28,7 +28,7 @@ date: 2022-04-26 | keepalives_interval | The number of seconds after which a TCP keepalive message that is not acknowledged by the server should be retransmitted. The value **0** indicates that the default value is used. Ignore this parameter for Unix-domain connections or if keep-alive is disabled. | | keepalives_count | Controls the number of times for TCP to send information to keep the activation. **0** indicates that the default value is used. If the link is made using the Unix domain socket or `keepalives` is disabled, ignore this parameter. | | tcp_user_timeout | Specifies the maximum time duration for the transmitted data being kept in unconfirmed staus before the TCP connection is forcibly disabled on an OS supporting the TCP_USER_TIMEOUT socket option. **0** indicates that the default value is used. If the link is made using the Unix domain socket, ignore this parameter. | -| rw_timeout | Sets the read and write timeout interval of the client connection. | +| rw_timeout | Sets the read and write timeout interval of the client connection.
Note: when this parameter value is less than 5s, the timeout is handled as 5s.| | sslmode | Specifies whether to enable SSL encryption.
- **disable**: SSL connection is disabled.
- **allow**: If the database server requires SSL connection, SSL connection can be enabled. However, authenticity of the database server will not be verified.
- **prefer**: If the database supports SSL connection, SSL connection is preferred. However, authenticity of the database server will not be verified.
- **require**: SSL connection is required and data is encrypted. However, authenticity of the database server will not be verified.
- **verify-ca**: SSL connection is required. Currently, Windows ODBC does not support cert authentication.
- **verify-full**: SSL connection is required. Currently, Windows ODBC does not support cert authentication. | | sslcompression | If this parameter is set to **1** (default value), the data transmitted over the SSL connection is compressed (this requires that the OpenSSL version be 0.9.8 or later). If this parameter is set to **0**, compression will be disabled (this requires OpenSSL 1.0.0 or later). If a connection without SSL is established, this parameter is ignored. If the OpenSSL version in use does not support this parameter, it will also be ignored. Compression takes up CPU time, but it increases throughput when the bottleneck is the network. If CPU performance is a limiting factor, disabling compression can improve response time and throughput. | | sslcert | This parameter specifies the file name of the client SSL certificate. It replaces the default **~/.postgresql/postgresql.crt**. If no SSL connection is established, this parameter is ignored. | diff --git a/product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/link-parameters.md b/product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/link-parameters.md index 981a99be..80dfe22c 100644 --- a/product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/link-parameters.md +++ b/product/en/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/link-parameters.md @@ -28,7 +28,7 @@ date: 2022-04-26 | keepalives_interval | The number of seconds after which a TCP keepalive message that is not acknowledged by the server should be retransmitted. The value **0** indicates that the default value is used. Ignore this parameter for Unix-domain connections or if keep-alive is disabled. | | keepalives_count | Controls the number of times for TCP to send information to keep the activation. **0** indicates that the default value is used. If the link is made using the Unix domain socket or `keepalives` is disabled, ignore this parameter. | | tcp_user_timeout | Specifies the maximum time duration for the transmitted data being kept in unconfirmed staus before the TCP connection is forcibly disabled on an OS supporting the TCP_USER_TIMEOUT socket option. **0** indicates that the default value is used. If the link is made using the Unix domain socket, ignore this parameter. | -| rw_timeout | Sets the read and write timeout interval of the client connection. | +| rw_timeout | Sets the read and write timeout interval of the client connection.
Note: when this parameter value is less than 5s, the timeout is handled as 5s.| | sslmode | Specifies whether to enable SSL encryption.
- **disable**: SSL connection is disabled.
- **allow**: If the database server requires SSL connection, SSL connection can be enabled. However, authenticity of the database server will not be verified.
- **prefer**: If the database supports SSL connection, SSL connection is preferred. However, authenticity of the database server will not be verified.
- **require**: SSL connection is required and data is encrypted. However, authenticity of the database server will not be verified.
- **verify-ca**: SSL connection is required. Currently, Windows ODBC does not support cert authentication.
- **verify-full**: SSL connection is required. Currently, Windows ODBC does not support cert authentication. | | sslcompression | If this parameter is set to **1** (default value), the data transmitted over the SSL connection is compressed (this requires that the OpenSSL version be 0.9.8 or later). If this parameter is set to **0**, compression will be disabled (this requires OpenSSL 1.0.0 or later). If a connection without SSL is established, this parameter is ignored. If the OpenSSL version in use does not support this parameter, it will also be ignored. Compression takes up CPU time, but it increases throughput when the bottleneck is the network. If CPU performance is a limiting factor, disabling compression can improve response time and throughput. | | sslcert | This parameter specifies the file name of the client SSL certificate. It replaces the default **~/.postgresql/postgresql.crt**. If no SSL connection is established, this parameter is ignored. | diff --git a/product/zh/docs-mogdb/v3.0/developer-guide/dev/4-development-based-on-libpq/link-parameters.md b/product/zh/docs-mogdb/v3.0/developer-guide/dev/4-development-based-on-libpq/link-parameters.md index f545dc77..ebac389b 100644 --- a/product/zh/docs-mogdb/v3.0/developer-guide/dev/4-development-based-on-libpq/link-parameters.md +++ b/product/zh/docs-mogdb/v3.0/developer-guide/dev/4-development-based-on-libpq/link-parameters.md @@ -27,7 +27,7 @@ date: 2022-04-26 | keepalives_idle | 在TCP应该发送一个保持激活的信息给服务器之后,控制不活动的秒数。0值表示使用系统缺省。通过Unix域套接字做的链接或者如果禁用了保持激活则忽略这个参数。 | | keepalives_interval | 在TCP保持激活信息没有被应该传播的服务器承认之后,控制秒数。0值表示使用系统缺省。通过Unix域套接字做的链接或者如果禁用了保持激活则忽略这个参数。 | | keepalives_count | 添加命令行选项以在运行时发送到服务器。例如,设置为-c comm_debug_mode=off设置guc参数comm_debug_mode参数的会话的值为off。 | -| rw_timeout | 设置客户端连接读写超时时间。 | +| rw_timeout | 设置客户端连接读写超时时间。
注意:此参数值小于5s时,超时时间按5s处理。 | | sslmode | 启用SSL加密的方式:
- disable:不使用SSL安全连接。
- allow:如果数据库服务器要求使用,则可以使用SSL安全加密连接,但不验证数据库服务器的真实性。
- prefer:如果数据库支持,那么首选使用SSL安全加密连接,但不验证数据库服务器的真实性。
- require:必须使用SSL安全连接,但是只做了数据加密,而并不验证数据库服务器的真实性。
- verify-ca:必须使用SSL安全连接,当前windows odbc不支持cert方式认证。
- verify-full:必须使用SSL安全连接,当前windows odbc不支持cert方式认证。 | | sslcompression | 如果设置为1(默认),SSL连接之上传送的数据将被压缩(这要求OpenSSL版本为0.9.8或更高)。如果设置为0,压缩将被禁用(这要求OpenSSL版本为1.0.0或更高)。如果建立的是一个没有SSL的连接,这个参数会被忽略。如果使用的OpenSSL版本不支持该参数,它也会被忽略。压缩会占用CUP时间,但是当瓶颈为网络时可以提高吞吐量。如果CPU性能是限制因素,禁用压缩能够改进响应时间和吞吐量。 | | sslcert | 这个参数指定客户端SSL证书的文件名,它替换默认的~/.postgresql/postgresql.crt。如果没有建立SSL连接,这个参数会被忽略。 | diff --git a/product/zh/docs-mogdb/v3.1/developer-guide/dev/4-development-based-on-libpq/link-parameters.md b/product/zh/docs-mogdb/v3.1/developer-guide/dev/4-development-based-on-libpq/link-parameters.md index 576622ab..2c96d82d 100644 --- a/product/zh/docs-mogdb/v3.1/developer-guide/dev/4-development-based-on-libpq/link-parameters.md +++ b/product/zh/docs-mogdb/v3.1/developer-guide/dev/4-development-based-on-libpq/link-parameters.md @@ -28,7 +28,7 @@ date: 2022-04-26 | keepalives_interval | 在TCP保持激活信息没有被应该传播的服务器承认之后,控制秒数。0值表示使用系统缺省。通过Unix域套接字做的链接或者如果禁用了保持激活则忽略这个参数。 | | keepalives_count | 控制TCP发送保持激活信息的次数。0值表示使用系统缺省。通过Unix域套接字做的链接或者如果禁用了保持激活则忽略这个参数。 | | tcp_user_timeout | 在支持TCP_USER_TIMEOUT套接字选项的操作系统上,指定传输的数据在TCP连接被强制关闭之前可以保持未确认状态的最大时长。0值表示使用系统缺省。通过Unix域套接字做的链接忽略这个参数。 | -| rw_timeout | 设置客户端连接读写超时时间。 | +| rw_timeout | 设置客户端连接读写超时时间。
注意:此参数值小于5s时,超时时间按5s处理。 | | sslmode | 启用SSL加密的方式:
- disable:不使用SSL安全连接。
- allow:如果数据库服务器要求使用,则可以使用SSL安全加密连接,但不验证数据库服务器的真实性。
- prefer:如果数据库支持,那么首选使用SSL安全加密连接,但不验证数据库服务器的真实性。
- require:必须使用SSL安全连接,但是只做了数据加密,而并不验证数据库服务器的真实性。
- verify-ca:必须使用SSL安全连接,当前windows odbc不支持cert方式认证。
- verify-full:必须使用SSL安全连接,当前windows odbc不支持cert方式认证。 | | sslcompression | 如果设置为1(默认),SSL连接之上传送的数据将被压缩(这要求OpenSSL版本为0.9.8或更高)。如果设置为0,压缩将被禁用(这要求OpenSSL版本为1.0.0或更高)。如果建立的是一个没有SSL的连接,这个参数会被忽略。如果使用的OpenSSL版本不支持该参数,它也会被忽略。压缩会占用CUP时间,但是当瓶颈为网络时可以提高吞吐量。如果CPU性能是限制因素,禁用压缩能够改进响应时间和吞吐量。 | | sslcert | 这个参数指定客户端SSL证书的文件名,它替换默认的~/.postgresql/postgresql.crt。如果没有建立SSL连接,这个参数会被忽略。 | diff --git a/product/zh/docs-mogdb/v5.0/developer-guide/dev/4-development-based-on-libpq/link-parameters.md b/product/zh/docs-mogdb/v5.0/developer-guide/dev/4-development-based-on-libpq/link-parameters.md index 576622ab..4aaafd8c 100644 --- a/product/zh/docs-mogdb/v5.0/developer-guide/dev/4-development-based-on-libpq/link-parameters.md +++ b/product/zh/docs-mogdb/v5.0/developer-guide/dev/4-development-based-on-libpq/link-parameters.md @@ -28,7 +28,7 @@ date: 2022-04-26 | keepalives_interval | 在TCP保持激活信息没有被应该传播的服务器承认之后,控制秒数。0值表示使用系统缺省。通过Unix域套接字做的链接或者如果禁用了保持激活则忽略这个参数。 | | keepalives_count | 控制TCP发送保持激活信息的次数。0值表示使用系统缺省。通过Unix域套接字做的链接或者如果禁用了保持激活则忽略这个参数。 | | tcp_user_timeout | 在支持TCP_USER_TIMEOUT套接字选项的操作系统上,指定传输的数据在TCP连接被强制关闭之前可以保持未确认状态的最大时长。0值表示使用系统缺省。通过Unix域套接字做的链接忽略这个参数。 | -| rw_timeout | 设置客户端连接读写超时时间。 | +| rw_timeout | 设置客户端连接读写超时时间。
注意:此参数值小于5s时,超时时间按5s处理。 | | sslmode | 启用SSL加密的方式:
- disable:不使用SSL安全连接。
- allow:如果数据库服务器要求使用,则可以使用SSL安全加密连接,但不验证数据库服务器的真实性。
- prefer:如果数据库支持,那么首选使用SSL安全加密连接,但不验证数据库服务器的真实性。
- require:必须使用SSL安全连接,但是只做了数据加密,而并不验证数据库服务器的真实性。
- verify-ca:必须使用SSL安全连接,当前windows odbc不支持cert方式认证。
- verify-full:必须使用SSL安全连接,当前windows odbc不支持cert方式认证。 | | sslcompression | 如果设置为1(默认),SSL连接之上传送的数据将被压缩(这要求OpenSSL版本为0.9.8或更高)。如果设置为0,压缩将被禁用(这要求OpenSSL版本为1.0.0或更高)。如果建立的是一个没有SSL的连接,这个参数会被忽略。如果使用的OpenSSL版本不支持该参数,它也会被忽略。压缩会占用CUP时间,但是当瓶颈为网络时可以提高吞吐量。如果CPU性能是限制因素,禁用压缩能够改进响应时间和吞吐量。 | | sslcert | 这个参数指定客户端SSL证书的文件名,它替换默认的~/.postgresql/postgresql.crt。如果没有建立SSL连接,这个参数会被忽略。 | diff --git a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/link-parameters.md b/product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/link-parameters.md index 576622ab..4aaafd8c 100644 --- a/product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/link-parameters.md +++ b/product/zh/docs-mogdb/v5.1/developer-guide/dev/4-development-based-on-libpq/link-parameters.md @@ -28,7 +28,7 @@ date: 2022-04-26 | keepalives_interval | 在TCP保持激活信息没有被应该传播的服务器承认之后,控制秒数。0值表示使用系统缺省。通过Unix域套接字做的链接或者如果禁用了保持激活则忽略这个参数。 | | keepalives_count | 控制TCP发送保持激活信息的次数。0值表示使用系统缺省。通过Unix域套接字做的链接或者如果禁用了保持激活则忽略这个参数。 | | tcp_user_timeout | 在支持TCP_USER_TIMEOUT套接字选项的操作系统上,指定传输的数据在TCP连接被强制关闭之前可以保持未确认状态的最大时长。0值表示使用系统缺省。通过Unix域套接字做的链接忽略这个参数。 | -| rw_timeout | 设置客户端连接读写超时时间。 | +| rw_timeout | 设置客户端连接读写超时时间。
注意:此参数值小于5s时,超时时间按5s处理。 | | sslmode | 启用SSL加密的方式:
- disable:不使用SSL安全连接。
- allow:如果数据库服务器要求使用,则可以使用SSL安全加密连接,但不验证数据库服务器的真实性。
- prefer:如果数据库支持,那么首选使用SSL安全加密连接,但不验证数据库服务器的真实性。
- require:必须使用SSL安全连接,但是只做了数据加密,而并不验证数据库服务器的真实性。
- verify-ca:必须使用SSL安全连接,当前windows odbc不支持cert方式认证。
- verify-full:必须使用SSL安全连接,当前windows odbc不支持cert方式认证。 | | sslcompression | 如果设置为1(默认),SSL连接之上传送的数据将被压缩(这要求OpenSSL版本为0.9.8或更高)。如果设置为0,压缩将被禁用(这要求OpenSSL版本为1.0.0或更高)。如果建立的是一个没有SSL的连接,这个参数会被忽略。如果使用的OpenSSL版本不支持该参数,它也会被忽略。压缩会占用CUP时间,但是当瓶颈为网络时可以提高吞吐量。如果CPU性能是限制因素,禁用压缩能够改进响应时间和吞吐量。 | | sslcert | 这个参数指定客户端SSL证书的文件名,它替换默认的~/.postgresql/postgresql.crt。如果没有建立SSL连接,这个参数会被忽略。 | -- Gitee