I was creating a table in MySQL and this error appeared in this code:
USE cadastro;
CREATE TABLE países(
cod_país INT NOT NULL AUTO_INCREMENT,
nome_país VARCHAR (30),
PRIMARY KEY cod_país
);
1 errors were encountered during analysis.
A closing bracket was expected. (near ")" at position 124)