Natural primary key is one that contains a real data, not just a random value, as an integer.
Example:
// comum
CREATE TABLE pessoas (
id INTEGER PRIMARY KEY,
cpf INTEGER NOT NULL,
// outros campos
);
// chave natural
CREATE TABLE pe...
asked by
11.08.2014 / 15:26