Only showing after @ duplicates

K

KARL DEWEY

Replace the [x] with the name of your field.
SELECT Right([x],Len([x])-InStr([x],"@")+1) AS Expr1, Count(a.x) AS CountOfx
FROM [YourTable]
GROUP BY Right([x],Len([x])-InStr([x],"@")+1);
 
Top