SQL Server/T-SQL/String Functions/UNICODE

Материал из SQL эксперт
Перейти к: навигация, поиск

UNICODE: Returns the integer Unicode value of a single leftmost character in a string

   <source lang="sql">

1> -- UNICODE: Returns the integer Unicode value of a single leftmost character in a string 2> 3> SELECT UNICODE("Bedford Blues") 4> GO


        66

(1 rows affected) 1>

      </source>