表t1 字段 id,username
表t2 字段 id,username
编码gbk,
表t1中 :
数据1: 1 CǒCǒ
数据2: 2 coco
表t2中:
数据1: 1 CóCǒ
需要删除 这两个表中, 所有形如coco的数据(需要使用 utf8mb4 校对集做对比)
单表的我写出来了:
delete from t1 where convert(username USING utf8mb4) = convert(username USING utf8mb4);
多表的不知道怎么写了,求解