SQL Server/T-SQL/String Functions/UNICODE — различия между версиями

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

Текущая версия на 10:19, 26 мая 2010

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

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>