Andriiko Posted August 7, 2014 Share Posted August 7, 2014 UPDATE `forums` SET `description` = REPLACE(description, 'Быть или не быть', 'быть или не быть' ) Переименовывать очень много. Как написать команду, что бы большую начальную букву сменить на маленькую? Link to comment Share on other sites More sharing options...
siv1987 Posted August 7, 2014 Share Posted August 7, 2014 UPDATE forums SET description = CONCAT(LOWER(SUBSTRING(description, 1, 1)), SUBSTRING(description, 2)) Link to comment Share on other sites More sharing options...
Andriiko Posted August 7, 2014 Author Share Posted August 7, 2014 (edited) siv1987, спасибо ;) Edited August 7, 2014 by Andriiko Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now