I am trying to insert ≤
and ≥
into a symbol table where the column is of type nvarchar
.
Is this possible or are these symbols not allowed in SQL Server?
To make it work, prefix the string with N
create table symboltable
(
val nvarchar(10)
)
insert into symboltable values(N'≥')
select *
from symboltable
Further Reading: