Skip to content

Instantly share code, notes, and snippets.

@silasrm
Created November 26, 2014 22:38
Show Gist options
  • Save silasrm/3be8e0f2f1783dba9d2f to your computer and use it in GitHub Desktop.
Save silasrm/3be8e0f2f1783dba9d2f to your computer and use it in GitHub Desktop.
Função para MySQL para mudar a caixa do texto para Título (CamelCase) Ref: http://joezack.com/2008/10/20/mysql-capitalize-function/
DELIMITER $$
CREATE FUNCTION CAP_FIRST (input VARCHAR(255))
RETURNS VARCHAR(255)
DETERMINISTIC
BEGIN
DECLARE len INT;
DECLARE i INT;
SET len = CHAR_LENGTH(input);
SET input = LOWER(input);
SET i = 0;
WHILE (i < len) DO
IF (MID(input,i,1) = ' ' OR i = 0) THEN
IF (i < len) THEN
SET input = CONCAT(
LEFT(input,i),
UPPER(MID(input,i + 1,1)),
RIGHT(input,len - i - 1)
);
END IF;
END IF;
SET i = i + 1;
END WHILE;
RETURN input;
END $$;
DELIMITER ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment