gpt4 book ai didi

mysql - 左连接与 md5(concat()) mysql 进行比较

转载 作者:行者123 更新时间:2023-11-29 14:14:13 25 4
gpt4 key购买 nike

首先,我对我的英语感到抱歉。

我想比较生成的 md5 的两条记录:

我在表2中插入从表1带来的信息

INSERT INTO table2 (id_table_2, hash_string) 
SELECT t.id, MD5 (CONCAT (t.firstname, t.lastname)) AS hash_string
FROM table1 t WHERE t.id = $some_value

之后我想知道table1中的哪些记录在table2中不存在,但我无法获得我想要的结果。我这样做:

SELECT t.id, MD5(CONCAT(t.firstname, t.lastname)) , ti.hash_string 
FROM table1 t
LEFT JOIN table2 ti ON (t.id = ti.id_table_2
AND MD5(CONCAT(t.firstname, t.lastname)) != ti.hash_string)
WHERE t.state = 2

但是它不起作用。

我想要的是表1中不在表2中的记录,但是从那里,如果md5散列不同也显示它。但我没能得到它。我感谢您能给我的所有帮助。谢谢。

最佳答案

也许你想要这个,请参阅最后添加的行,我还将 != 更改为 =:

SELECT t.id, MD5(CONCAT(t.firstname, t.lastname)) , ti.hash_string 
FROM table1 t
LEFT JOIN table2 ti ON (t.id = ti.id_table_2
AND MD5(CONCAT(t.firstname, t.lastname)) = ti.hash_string)
WHERE t.state = 2
AND ti.id_table_2 IS NULL

这个技巧的基本形式:

SELECT *
FROM a
LEFT JOIN b ON a.id = b.id
WHERE b.id IS NULL

关于mysql - 左连接与 md5(concat()) mysql 进行比较,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12943470/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com