मुझे पूरा यकीन है कि पोस्टग्रेज वर्कर Oracle/Sybase/MSSQL nvarchar जैसा ही है, हालांकि यह मैनुअल में स्पष्ट नहीं है:
http://www.postgresql.org/docs/7.4/static /datatype-character.html
एन्कोडिंग रूपांतरण कार्य यहां हैं:
http://www.postgresql.org/docs/current/static /functions-string.html http://www.postgresql.org/docs /current/static/functions-string.html#CONVERSION-NAMES
उदाहरण:
create table
nvctest (
utf8fld varchar(12)
);
insert into nvctest
select convert('PostgreSQL' using ascii_to_utf_8);
select * from nvctest;
साथ ही, यह प्रतिक्रिया है Postgresql प्रतिनिधि से एक समान प्रश्न के लिए: