Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 mysql db 表中有一个列,其中包含电子邮件地址和常规用户名。
我需要运行一个查询,该查询可以从每一行中删除“@domain.com”,但如果是电子邮件,则保留其余部分。
不知道该怎么做。
如何使用子字符串?
SELECT SUBSTRING_INDEX('www.mysql.com', '.', 2); returns: 'www.mysql'