Jump to content

[SOLVED] string operations


dvayne

Recommended Posts

how to display students who five-letter first names?

how to display lastnames in uppercase letters and the firstnames in lowercase of all the students?

how to display all students lastnames and its corresponding length

how to display the id number of students with their addresses. the first character of address should be converted to uppercase?

Link to comment
https://forums.phpfreaks.com/topic/85913-solved-string-operations/
Share on other sites

# returns column value of ->  a test  as ->  A test

SELECT CONCAT(UPPER(LEFT(address,1)), SUBSTRING(address, 2)) AS address FROM table_name

 

Learn by referring to the manual page for string functions:

 

http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

 

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.