MySQL Forums
Forum List  »  Newbie

Re: Incorrect String Value
Posted by: Tames Bond
Date: April 12, 2022 12:35PM

Table: addresses
Create Table: CREATE TABLE 'addresses' (
IDNUM int(8) unsigned zerofill NOT NULL,
Addy varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL,
Town varchar(5) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL,
Desc varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL,
AstYear varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL,
PRIMARY KEY ('IDNUM'),
UNIQUE KEY 'IDNUM_UNIQUE' ('IDNUM')
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE utf8mb4_0900_ai_cs
1 row in set (0.00 sec)

the error is
ERROR 1366 (HY000): Incorrect string value: '\xE9siden...' for column 'Desc' at row 11

Offending line:
00100298 3271 RTE 202 325 Terrain & RĂ©sidence 2021

Options: ReplyQuote


Subject
Written By
Posted
April 11, 2022 08:57PM
April 11, 2022 09:08PM
April 12, 2022 10:13AM
April 12, 2022 10:33AM
Re: Incorrect String Value
April 12, 2022 12:35PM
April 12, 2022 04:26PM
April 12, 2022 07:45PM
April 12, 2022 08:03PM
April 13, 2022 05:34PM
April 13, 2022 10:09PM
April 14, 2022 06:07PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.