Created
September 29, 2014 03:08
-
-
Save PMeinshausen/30d64a74094090079f87 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--Syntax (version 1.1) | |
--Use a SELECT statement to call the Levenshtein distance function: | |
SELECT * | |
FROM ldist | |
( | |
ON table_name | |
SOURCE (column1 [, column2,...]) | |
TARGET(column1) | |
[THRESHOLD(value)] | |
[OUTPUT_COLUMN_NAME(column_name)] | |
[TARGET_COLUMN_NAME(column_name)] | |
[SOURCE_COLUMN_NAME(column_name)] | |
[ACCUMULATE(column1 [, column2,...]) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment