Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个不是我编写的 SQL 文件,我对此一无所知。我试图将此文件上传到服务器,但字符串数据字符被打乱了。
INSERT INTO `Anstitu` (`Code_Anstitu`, `Name_Anstitu`) VALUES (7, '?©?§?±U‡?§UŒ ?¹U…UˆU…UŒ ?³?§?®??U…?§U†');
有 1,000,000 条这样的记录,我必须找到真正的方法。我知道,SET NAMES utf8但没用。
SET NAMES utf8
有任何想法吗?
你有没有尝试过
INSERT INTO Anstitu (Code_Anstitu, Name_Anstitu) VALUES (7, N'?©?§?±U‡?§UŒ ?¹U…UˆU…UŒ ?³?§?®??U…?§U†');
假设 Name_Anstitu 是 nvarchar 列?