Mysql
 sql >> Database >  >> RDS >> Mysql

mysql:modo efficiente per la ricerca postfix (come '%text' alias prefix jolly)?

Un indice su campo inverso sarà la soluzione, alcuni pensano come:

create index idx_reverse on table ( reverse( field ) );
select * from table where reverse(field) like 'txet%';

ma MySQL non consente l'indice sulle espressioni, solo sulle colonne:

questo è MySQL crea la sintassi dell'indice :

CREATE [UNIQUE|FULLTEXT|SPATIAL] INDEX index_name
    [index_type]
    ON tbl_name (index_col_name,...)
    [index_option] ...

Questa è postgres create index syntax :

CREATE [ UNIQUE ] INDEX [ CONCURRENTLY ] name ON table [ USING method ]
    ( { column | ( expression ) } [ opclass ] [, ...] )
    ...

Una soluzione alternativa può essere creato un secondo campo indicizzato (campo -> dleif) e un mysql attivare per mantenere il campo invertito:

alter table my_table add column dleif ...;
create index idx_reverse on my_table ( dleif );
Create Trigger `reverse_field` Before Update on `my_table` for each row BEGIN
    set new.dleif = reverse( new.field );
END;
select * from table where dleif like reverse('%text');