tags:

views:

35

answers:

2

Hi, I need few examples for Unicode SQL queries. Also, i need to understand fully about Unicode. Pls help.

A: 

tsql:

insert into Table1(col1) values(N'unicode text ☻');
x2
A: 

Both parts of your question are way too broad. For the second part see The Absolute Minimum Every Software Developer Absolutely, Positively Must Know About Unicode and Character Sets (No Excuses!)

Martin Smith