This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Cria duas tabelas: stringcpf e bigintcpf | |
drop table if exists stringcpf; | |
create table if not exists stringcpf ( | |
cpf varchar(11) not null primary key | |
); | |
drop table if exists bigintcpf; | |
create table bigintcpf ( | |
cpf bigint not null primary key | |
); |