Mental Warrior
New member
- Joined
- Apr 7, 2005
- Messages
- 4
- Reaction score
- 0
Title: SQL Speed: Can You Optimize a Query This Sluggish?
Yo guys, hoping someone can help me out with this. I've got a query that's running a full minute with over 100k rows, and I'm at a loss. Here's the query:
```sql
SELECT *
FROM users
WHERE email REGEXP 'someemail@example\.com';
```
Any ideas how to speed this up?
Yo guys, hoping someone can help me out with this. I've got a query that's running a full minute with over 100k rows, and I'm at a loss. Here's the query:
```sql
SELECT *
FROM users
WHERE email REGEXP 'someemail@example\.com';
```
Any ideas how to speed this up?