Я анализирую данные из файла JSON и у меня возникают проблемы, когда я, наконец, загружаю в свою таблицу, данные, в которых есть специальные символы, такие как -, вместо них отображаются как.
Код находится в NVARCHARи я не уверен, почему он не тянет правильно
INSERT INTO @recordsInfo
(
messageId,
messageType,
messageVariation,
windowEnvelope,
recipientFirstName,
recipientLastName,
recipientAddressLine1,
recipientAddressLine2,
recipientCity,
recipientState,
recipientZip,
recipientZipSuffix
)
SELECT messageId,
messageType,
messageVariation,
windowEnvelope,
recipientFirstName,
recipientLastName,
recipientAddressLine1,
recipientAddressLine2,
recipientCity,
recipientState,
recipientZip,
recipientZipSuffix
FROM
OPENJSON(@ValueR)
WITH
(
messageId NVARCHAR(100),
messageType NVARCHAR(100) '$.messageDetails.messageType',
messageVariation NVARCHAR(100) '$.messageDetails.messageVariation',
windowEnvelope NVARCHAR(100) '$.messageDetails.windowEnvelope',
recipientFirstName NVARCHAR(100) '$."shippingDetails"."recipientFirstName"',
recipientLastName NVARCHAR(100) '$."shippingDetails"."recipientLastName"',
recipientAddressLine1 NVARCHAR(1000) '$.shippingDetails.recipientAddressLine1',
recipientAddressLine2 NVARCHAR(100) '$.shippingDetails.recipientAddressLine2',
recipientCity NVARCHAR(100) '$.shippingDetails.recipientCity',
recipientState NVARCHAR(100) '$.shippingDetails.recipientState',
recipientZip NVARCHAR(100) '$.shippingDetails.recipientZip',
recipientZipSuffix NVARCHAR(100) '$.shippingDetails.recipientZipSuffix'
);
DECLARE @recordsInfo TABLE
(
RecID INT IDENTITY(1, 1),
messageId NVARCHAR(100),
messageType NVARCHAR(100),
messageVariation NVARCHAR(100),
windowEnvelope NVARCHAR(100),
recipientFirstName NVARCHAR(100),
recipientLastName NVARCHAR(100),
recipientAddressLine1 NVARCHAR(1000),
recipientAddressLine2 NVARCHAR(100),
recipientCity NVARCHAR(100),
recipientState NVARCHAR(100),
recipientZip NVARCHAR(100),
recipientZipSuffix NVARCHAR(100)
);
RecipientFirstName является основным я смотрю на