你的資料欄位是否為nvarchar
以及寫入時前面是否加N
declare @TmpTable table(
Test nvarchar(50)
)
insert into @TmpTable
values(N'®')
select * from @TmpTable
SQL Server如何儲存特殊字元、上標、下標
https://tw.saowen.com/a/c4102c57e8739ae8998d97b906773923cc484ef289e7346c82261ee8ae75b208
用PostgreSQL輕鬆愉快多了.
create table ithelp180531 (
val text not null
);
insert into ithelp180531 values
('®'), ('?');
select *
from ithelp180531;
val
-----
®
?
(2 筆資料列)