Categories : PHP SQL Set only first letter capital other in lowercase in PHP SQL $sql = “SELECT concat(left(emp_name,1),substring(lower(emp_name),2)) as emp_name FROM employee”; Input : “Raj Kumar”Output : “Raj kumar” Posted on February 4, 2018