Mysql
 sql >> Datenbank >  >> RDS >> Mysql

MySQL 5.5-Partitionstabelle von A-Z

Wenn Sie nach dem ersten Buchstaben entschlossen sind, es zu tun, denke ich, dass RANGE-Partitionierung würde den Trick machen. Wenn Sie jedoch keine absolute Anforderung für die Partitionierung nach Anfangsbuchstaben haben, LINEAR KEY-Partitionierung könnte besser sein.

Hier ist ein Beispiel, das ich der Handbuchseite entnommen und modifiziert habe, um eine varchar-Spalte zu verwenden:

CREATE TABLE employees (
    id INT NOT NULL,
    fname VARCHAR(30),
    lname VARCHAR(30),
    hired DATE NOT NULL DEFAULT '1970-01-01',
    separated DATE NOT NULL DEFAULT '9999-12-31',
    job_code INT NOT NULL,
    store_id INT NOT NULL
)
PARTITION BY RANGE COLUMNS(fname) (
    PARTITION p0 VALUES LESS THAN ('h'),
    PARTITION p1 VALUES LESS THAN ('m'),
    PARTITION p2 VALUES LESS THAN ('t'),
    PARTITION p3 VALUES LESS THAN MAXVALUE
);

Und es ausführen:

... Physical database connection acquired for: Feynman
 12:33:07  [CREATE - 0 row(s), 0.062 secs]  Command processed. No rows were affected
... 1 statement(s) executed, 0 row(s) affected, exec/fetch time: 0.062/0.000 sec  [0 successful, 1 warnings, 0 errors]