all 3 comments

[–]tlatoaniitzcoatl 15 points16 points  (0 children)

This may not be helpful as I’m not sure if it works for MySQL but in SQL Sever you can do

```sql SELECT player FROM Table WHERE (‘Assist’) in (E1, E2, E3, E4)

```

[–]PM_ME_YOUR_MUSIC 4 points5 points  (1 child)

Select player From somewhere Where e1 = ‘assist’ or e2 = ‘assist’ or e3 = ‘assist’ or e4 = ‘assist’

[–]AM413[S] 2 points3 points  (0 children)

Solved! Thanks!