1
Do you have a problem creating a new table for fields that are not mandatory ? For example in the address table (cod_addressee, path, zip code, number, complement) where add-on is an optional field, and when a user enters data the table does not get this null field, and when the user inserts an add-on it is used in a new table. I’m not sure but null or empty fields take up space, and I want to avoid that space being occupied by these 'blank' fields. The first image shows the address table (cod_endereco not null, logradouro not null, cep not null, numero not null, complement null), the second ja and with two tables where the complement table will only be populated if the user informs the complement.
There are some details that can be confusing to work with NULL, but this.
– Maniero
Thank you very much ! Really what worried me was the question of space and performance. It took a doubt that bothered me for some time.
– Leandro