Rechercher dans le manuel MySQL
23.2.3 COLUMNS Partitioning
The next two sections discuss
COLUMNS
partitioning, which are variants on
RANGE
and LIST
partitioning. COLUMNS
partitioning enables
the use of multiple columns in partitioning keys. All of these
columns are taken into account both for the purpose of placing
rows in partitions and for the determination of which partitions
are to be checked for matching rows in partition pruning.
In addition, both RANGE COLUMNS
partitioning
and LIST COLUMNS
partitioning support the use
of non-integer columns for defining value ranges or list
members. The permitted data types are shown in the following
list:
All integer types:
TINYINT
,SMALLINT
,MEDIUMINT
,INT
(INTEGER
), andBIGINT
. (This is the same as with partitioning byRANGE
andLIST
.)Other numeric data types (such as
DECIMAL
orFLOAT
) are not supported as partitioning columns.Columns using other data types relating to dates or times are not supported as partitioning columns.
The following string types:
CHAR
,VARCHAR
,BINARY
, andVARBINARY
.TEXT
andBLOB
columns are not supported as partitioning columns.
The discussions of RANGE COLUMNS
and
LIST COLUMNS
partitioning in the next two
sections assume that you are already familiar with partitioning
based on ranges and lists as supported in MySQL 5.1 and later;
for more information about these, see
Section 23.2.1, “RANGE Partitioning”, and
Section 23.2.2, “LIST Partitioning”, respectively.
Traduction non disponible
Le manuel MySQL n'est pas encore traduit en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Document créé le 26/06/2006, dernière modification le 26/10/2018
Source du document imprimé : https://www.gaudry.be/mysql-rf-partitioning-columns.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.