Collections:
Unicode Character String Literals in SQL Server Transact-SQL
How To Enter Unicode Character String Literals in SQL Server Transact-SQL?
✍: FYIcenter.com
Unicode characters are multi-byte characters. They are very hard to be entered as string literals, because it requires:
But if you know the code value of a Unicode character, you can enter it with the help of the NCHAR(int) function. For example:
-- A Unicode string of some interesting characters PRINT NCHAR(9733)+NCHAR(9734)+NCHAR(9792)+NCHAR(9794); ----- ★☆♀♂
⇒ Exact Numeric Literals in SQL Server Transact-SQL
⇐ Unicode String Literals in SQL Server Transact-SQL
2019-12-05, 8279🔥, 1💬
Popular Posts:
How To Create a Stored Program Unit in Oracle? If you want to create a stored program unit, you can ...
How To Create a Table Index in Oracle? If you have a table with a lots of rows, and you know that on...
How To Create a Table Index in Oracle? If you have a table with a lots of rows, and you know that on...
How to calculate the storage size of a JSON (JavaScript Object Notation) value using the JSON_STORAG...
How To Download Oracle Database 10g XE in Oracle? If you want to download a copy of Oracle Database ...