如何使用 UTF8MB4 校对集删除两个表中匹配的内容?
求解多表数据删除语句
如何删除两个表中指定内容的数据?这需要使用 utf8mb4 校对集进行比较并删除匹配的数据。
对于单表的数据删除,可以使用以下语句:
delete from t1 where convert(username using utf8mb4) = convert(username using utf8mb4);
对于多表中的数据删除,可以参考 mysql 文档中 delete 语句的多表语法:
delete [low_priority] [quick] [ignore] from table_references [where where_condition]
其中 table_references 指定参与删除操作的表,where_condition 指定删除条件。
sql 语句范例:
DELETE FROM t1, t2 WHERE CONVERT(t1.username USING utf8mb4) = CONVERT(t2.username USING utf8mb4);
以上就是如何使用 UTF8MB4 校对集删除两个表中匹配的内容?的详细内容,更多请关注其它相关文章!