Fname Lname City Pin
ramesh kumar salem 365241
Query to generate a code having the firstletter of
Fname,Lname & 3letter of city Last 3letter of pin,all in
capital letters
Answer Posted / sonali
select substr(ucase(Fname),1,1), substr(ucase(Lname),1,1),
substr(ucase(City),1,3), mid(Pin,-3) from emp
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Which is faster mongodb or mysql?
What is different between sql and mysql?
What is the default port for mysql and how it can change?
how we will Show selected records sorted in an ascending (asc) or descending (desc).
What is difference between unix timestamp and mysql timestamp?
Explain the difference between procedure and function in mysql?
What mysql -u john -p command does?
What is row locking in mysql?
What are the similarities between a function and a procedure?
What is heap table in mysql?
Is primary key auto increment?
Is mysql is a programming language?
What is pdo in php mysql?
explain GROUPBY & HAVING clause with examples.
How to delete a trigger in mysql?