URI SQL Solution 2625 - CPF Validation

select concat(substr(cpf,1,3),'.',substr(cpf,4,3),'.',substr(cpf,7,3),'-',substr(cpf,10,2)) as CPF
from natural_person;
Share:

0 Comments:

Post a Comment