Query to select passwords from a table having a column
"Password" Whose length is b/w 8 &15 and having 'A' as the
first character in the password irrespective of case.
Answer Posted / mdeva
SELECT Password
FROM tablename
WHERE Password LIKE 'A%'
AND Length( Password) >=8
AND Length( Password) <=15
| Is This Answer Correct ? | 15 Yes | 3 No |
Post New Answer View All Answers
How do you flush privileges?
What is mvcc in mysql?
What are the differences between char and varchar?
What is difference between mysql and mysqli?
Is pdo faster than mysqli?
What is the limit of mysql database?
Is oracle mysql free?
In mysql, what is joins? Explain
How many triggers are possible in mysql?
How do I export mysql query results to excel?
What are the advantages of a procedure?
What is a result set object?
What is the query to display top 20 rows?
how to take mysql database backup?
Describe mysql transaction properties.