Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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 / owais masood

select password from tablename
where (password like "A%" AND length(password) between 8 and
15) OR
(password like "a%" AND length(password) between 8 and 15)

Is This Answer Correct ?    12 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What's new in mysql 8?

1041


What is the storage engine for mysql?

1008


What are the advantages of MySQL when compared with Oracle?

979


Write a query to create a database and a table?

945


How do I connect to mysql database?

1090


How to calculate expressions with sql statements?

1169


How do I tune a mysql query?

943


Can mysql scale horizontally?

1034


How can you plan the logshipping before processing?

2382


How can I see connections in mysql?

978


What is pragma autonomous_transaction?

918


What is longblob in mysql?

1017


What is the difference between mysql_connect and mysqli_connect?

1019


Consider you have a composite index of three columns. Now, you have to provide the value of two columns in the where clause of a select query. Do you think index can be used for the operation?

1078


What is the difference between b-tree and hash indexes?

1056