I have a customer table having customer_id, customer_name, email,password,status etc fields.
Currently only customer_id is indexed (as it is the primary key)
I have few queries that select customers as follows
select * from customer
where status=1 and email<>''
and email is not null
and password<>''
and password is not null
This runs slow as I have 1.3 million records in it So I was thinking of adding index on email field. I want to know which indexing will make it better the simple index will work or I have to use FULLTEXT index