2
I’m creating a web system in PHP, and I’m in doubt about how best to create the table that will receive user information (Speed, organization and etc).
Beyond the nome
, email
and senha
, need to store CPF
, telefone
, data nascimento
and endereço
.
I store all this information in a single table or create two tables:
USUARIO
, that will receive thenome
,email
andsenha
; andINF-COMPLEMENTARES
, to theCPF
,telefone
,data nascimento
andendereço
?