79758631

Date: 2025-09-08 08:02:07
Score: 0.5
Natty:
Report link

Short answer: You need to use CHAR or VARCHARwith a database that was installed with the Unicode character set.

Why?

Postgres stores all character in the character set chosen at installation.

See an extract of the character documentation

The characters that can be stored in any of these data types are determined by the database character set, which is selected when the database is created. 

And you can see it also in the previous link as there is no NCHAR or NVARCHAR, only CHAR or VARCHAR.

Reasons:
  • Blacklisted phrase (0.5): Why?
  • Has code block (-0.5):
  • Contains question mark (0.5):
Posted by: gerardnico