將SQL Server 中的文字值從UTF8 轉換為ISO 8859-1
在SQL Server 中,文字資料可以以各種編碼存儲,包括UTF8 和ISO 8859-1。本文解決了將文字從 UTF8 編碼轉換為 ISO 8859-1 的需求,這是處理字元集時的常見挑戰。
要成功轉換文本,請按照以下步驟操作:
為了說明轉換過程,請考慮以下場景:
SQL Server 表有一個名為「text_data」的資料列,其中包含 UTF8 編碼的文字。任務是將此文字轉換為 ISO 8859-1 編碼。
可以使用以下查詢來實現此目的:
-- Create a temporary table with UTF8-encoded text CREATE TABLE #temp_table (text_data varchar(max) COLLATE Latin1_General_BIN); -- Insert UTF8-encoded text into the temporary table INSERT INTO #temp_table (text_data) VALUES ('Olá. Gostei do jogo. Quando "baixei" até achei que não iria curtir muito'); -- Convert the text to ISO 8859-1 encoding UPDATE #temp_table SET text_data = CONVERT(varchar(max), text_data, 1252); -- Select and display the converted text SELECT text_data FROM #temp_table; -- Drop the temporary table DROP TABLE #temp_table;
透過執行此查詢,「text_data」中的文字" 列將從 UTF8 轉換為 ISO 8859-1編碼,並顯示轉換後的文字。
以上是如何在 SQL Server 中將 UTF8 文字轉換為 ISO 8859-1?的詳細內容。更多資訊請關注PHP中文網其他相關文章!