Skip to content

Latest commit

 

History

History
79 lines (59 loc) · 3.07 KB

difference-transact-sql.md

File metadata and controls

79 lines (59 loc) · 3.07 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic f1_keywords helpviewer_keywords dev_langs monikerRange
DIFFERENCE (Transact-SQL)
DIFFERENCE (Transact-SQL)
markingmyname
maghan
03/03/2017
sql
t-sql
reference
DIFFERENCE
DIFFERENCE_TSQL
DIFFERENCE function
comparing SOUNDEX values
SOUNDEX values
TSQL
>= aps-pdw-2016 || = azuresqldb-current || = azure-sqldw-latest || >= sql-server-2016 || >= sql-server-linux-2017 || = azuresqldb-mi-current||=fabric

DIFFERENCE (Transact-SQL)

[!INCLUDE sql-asdb-asdbmi-asa-pdw-fabricse-fabricdw]

This function returns an integer value measuring the difference between the SOUNDEX() values of two different character expressions.

:::image type="icon" source="../../includes/media/topic-link-icon.svg" border="false"::: Transact-SQL syntax conventions

Syntax

DIFFERENCE ( character_expression , character_expression )  

[!INCLUDEsql-server-tsql-previous-offline-documentation]

Arguments

character_expression
An alphanumeric expression of character data. character_expression can be a constant, variable, or column.

Return Types

int

Remarks

DIFFERENCE compares two different SOUNDEX values, and returns an integer value. This value measures the degree that the SOUNDEX values match, on a scale of 0 to 4. A value of 0 indicates weak or no similarity between the SOUNDEX values; 4 indicates strongly similar, or even identically matching, SOUNDEX values.

DIFFERENCE and SOUNDEX have collation sensitivity.

Examples

The first part of this example compares the SOUNDEX values of two very similar strings. For a Latin1_General collation, DIFFERENCE returns a value of 4. The second part of the example compares the SOUNDEX values for two very different strings, and for a Latin1_General collation, DIFFERENCE returns a value of 0.

-- Returns a DIFFERENCE value of 4, the least possible difference.  
SELECT SOUNDEX('Green'), SOUNDEX('Greene'), DIFFERENCE('Green','Greene');  
GO  
-- Returns a DIFFERENCE value of 0, the highest possible difference.  
SELECT SOUNDEX('Blotchet-Halls'), SOUNDEX('Greene'), DIFFERENCE('Blotchet-Halls', 'Greene');  
GO  

[!INCLUDEssResult]

----- ----- -----------   
G650  G650  4             
  
(1 row(s) affected)  
  
----- ----- -----------   
B432  G650  0             
  
(1 row(s) affected)  

See Also

SOUNDEX (Transact-SQL)
String Functions (Transact-SQL)