postgresql/contrib/fuzzystrmatch
Magnus Hagander 92458c2c1f Convert cvsignore to gitignore, and add .gitignore for build targets. 2010-09-22 12:57:19 +02:00
..
.gitignore Convert cvsignore to gitignore, and add .gitignore for build targets. 2010-09-22 12:57:19 +02:00
Makefile > Please find enclose a submission to fix these problems. 2004-08-20 20:13:10 +00:00
README.fuzzystrmatch Some more missed copyright notices. Many of these look like they 2005-01-01 20:44:34 +00:00
README.soundex Add double metaphone code from Andrew Dunstan. Also change metaphone so that 2004-07-01 03:25:48 +00:00
dmetaphone.c Adjust comments previously moved to column 1 by pgident. 2004-10-07 15:21:58 +00:00
fuzzystrmatch.c Update copyrights that were missed. 2005-01-01 05:43:09 +00:00
fuzzystrmatch.h Defend against non-ASCII letters in fuzzystrmatch code. The functions 2009-04-07 15:54:22 +00:00
fuzzystrmatch.sql.in Mark the text_soundex() function as "strict", to avoid crashing on NULL 2005-01-26 08:08:04 +00:00

README.soundex

NOTE: Modified August 07, 2001 by Joe Conway. Updated for accuracy
	after combining soundex code into the fuzzystrmatch contrib
---------------------------------------------------------------------
The Soundex system is a method of matching similar sounding names
(or any words) to the same code.  It was initially used by the
United States Census in 1880, 1900, and 1910, but it has little use
beyond English names (or the English pronunciation of names), and
it is not a linguistic tool.

The following are some usage examples:

SELECT soundex('hello world!');

CREATE TABLE s (nm text)\g

insert into s values ('john')\g
insert into s values ('joan')\g
insert into s values ('wobbly')\g

select * from s
where soundex(nm) = soundex('john')\g

select a.nm, b.nm from s a, s b
where soundex(a.nm) = soundex(b.nm)
and a.oid <> b.oid\g

CREATE FUNCTION text_sx_eq(text, text) RETURNS bool AS
'select soundex($1) = soundex($2)'
LANGUAGE 'sql'\g

CREATE FUNCTION text_sx_lt(text,text) RETURNS bool AS
'select soundex($1) < soundex($2)'
LANGUAGE 'sql'\g

CREATE FUNCTION text_sx_gt(text,text) RETURNS bool AS
'select soundex($1) > soundex($2)'
LANGUAGE 'sql';

CREATE FUNCTION text_sx_le(text,text) RETURNS bool AS
'select soundex($1) <= soundex($2)'
LANGUAGE 'sql';

CREATE FUNCTION text_sx_ge(text,text) RETURNS bool AS
'select soundex($1) >= soundex($2)'
LANGUAGE 'sql';

CREATE FUNCTION text_sx_ne(text,text) RETURNS bool AS
'select soundex($1) <> soundex($2)'
LANGUAGE 'sql';

DROP OPERATOR #= (text,text)\g

CREATE OPERATOR #= (leftarg=text, rightarg=text, procedure=text_sx_eq,
commutator = #=)\g

SELECT *
FROM s
WHERE text_sx_eq(nm,'john')\g

SELECT *
from s
where s.nm #= 'john';