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 to represent ENUMs and SETs internally?
What is triggers?
Write a query to stop mysql in unix
What is msql?
What is a join in mysql?
How many sql dml commands are supported by 'mysql'?
What is the data type for file in mysql?
What is mysqli_result?
How would you enter characters as hex numbers?
What is 1nf 2nf 3nf?
How do I select a database in mysql workbench?
Is mysqli faster than mysql?
Which is better mysql or mssql?
Restore database (or database table) from backup.
What are the advantages of MySQL when compared with Oracle?