In plain English
A primary key is the column (or set of columns) that uniquely identifies each row in a table, and can never be null. Every table should normally have one.
Why it matters
Primary keys give you a reliable way to reference rows, back foreign keys, and help replication identify rows. They are enforced by a unique index behind the scenes.
En palabras simples
Una clave primaria es la columna (o conjunto de columnas) que identifica de forma unica cada fila de una tabla y nunca puede ser nula. Toda tabla normalmente deberia tener una.
Por que importa
Las claves primarias dan una forma confiable de referenciar filas, respaldan claves foraneas y ayudan a la replicacion a identificar filas. Se imponen con un indice unico por detras.