I'm building a project that required (in-project) local SQL Server but when I insert Chinese character into table, I got this "???"
Ex. when executing the following SQL, the word '你好' becomes '??'
INSERT INTO [dbo].[TraceData]
VALUES (N'z', N'0', N'A', N'A', N'2021-06-28', N'Y', N'你好')
Should change the collation of the database or is there any solution to solve the problem?
I've tried to change the collation to 'Chinese_Taiwan_Stroke_CI_AI' but it's not working, and unfortunately my local SQL Server doesn't seem to support utf-8 collation either.
I'm using Visual Studio 2019 community edition and SQL Server built-in Visual Studio (suppose to be SQL Server 2019)
(Example of local DB:https://www.youtube.com/watch?v=mgtfxtjKoaA&ab_channel=FoxLearn)