You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
select name, substring((random()*id)::varchar,1,11) as cpf, lpad (id::varchar, 11, '9') as tel, now() as nasc, 'Endereço-c' as endereco from customer c
union
select name, substring((random()*id)::varchar,1,11) as cpf, rpad (id::varchar, 11, '9') as tel, birth_date as nasc , 'Endereço-e' as endereco from employee e
$$) as (name varchar, cpf varchar, tel varchar, nasc date, endereco varchar);