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

soundex può essere utilizzato su una porzione di una colonna in mysql?

Dovrai spezzare ogni parola ed eseguire il SOUNDEX confronto, che è esattamente ciò che fa questa funzione di cui ti parlerò.

Utilizzo della funzione

Esempio di utilizzo:SELECT p.name FROM products p WHERE soundex_match('fiftythree', p.name, ' ')

Occorrono 3 argomenti:

  • ago:la parola che stai cercando
  • haysack:la stringa di parole tra le quali stai cercando
  • splitChar:il carattere degli spazi bianchi che dividerà la stringa in parole singole. Generalmente è lo spazio(‘ ‘)

Se una parola nel pagliaio suona simile ad ago, la funzione restituirà 1 e 0 in caso contrario.

Creazione della funzione nel tuo database

Quindi vai nel tuo database (phpMyAdmin o la riga di comando) ed esegui questo, devi farlo solo una volta):

drop function if exists soundex_match;
delimiter $$
create function soundex_match (needle varchar(128), haystack text, splitChar varchar(1)) returns tinyint
  deterministic
  begin
    declare spacePos int;
    declare searchLen int default length(haystack);
    declare curWord varchar(128) default '';
    declare tempStr text default haystack;
    declare tmp text default '';
    declare soundx1 varchar(64) default soundex(needle);
    declare soundx2 varchar(64) default '';

    set spacePos = locate(splitChar, tempStr);

    while searchLen > 0 do
      if spacePos = 0 then
        set tmp = tempStr;
        select soundex(tmp) into soundx2;
        if soundx1 = soundx2 then
          return 1;
        else
          return 0;
        end if;
      end if;

      if spacePos != 0 then
        set tmp = substr(tempStr, 1, spacePos-1);
        set soundx2 = soundex(tmp);
        if soundx1 = soundx2 then
          return 1;
        end if;
        set tempStr = substr(tempStr, spacePos+1);
        set searchLen = length(tempStr);
      end if;

      set spacePos = locate(splitChar, tempStr);

    end while;

    return 0;

  end
$$
delimiter ;

http://www.imranulhoque.com/ mysql/mysql-function-soundex-match-multi-word-string/