I have a email column in my users table that when the function on the user interface is selected to delete the user, it just updates the email address and adds the time to it.
基本上me@me.com
变成me@me.com.1234567
现在我可以使用以下方法搜索更新的用户:
SELECT DISTINCT SUBSTRING_INDEX(email, '.', 2)
FROM users
但我遇到的问题是在 @ 符号前显示 2 或 3 位小数的电子邮件显然没有正确显示。所以user.lastname@me.com.1234567
显示user.lastname@me
等等。
我如何确保我只删除最后一个 ' 后面的最后一部分。' 结果呢?