标签: sql presto
我的sql数据库中有一列名为Email的列,因此我需要离开列以获取@符号之前的内容
答案 0 :(得分:0)
您可以使用split_part():
split_part()
select split_part(email, '@', 1)