Is there anyway using mysql only you can do a
select * from table where str_length('password') < 5
So way to get a return of all passwords with less then 5
characters in them?
Or do I need to use php?
select * from table where str_length('password') < 5
So way to get a return of all passwords with less then 5
characters in them?
Or do I need to use php?

Comment