R
Run this query to remove the desired column:ALTER TABLE `tabela` DROP `coluna`;
I see it's beginner in _, but is it really necessary to remove the primary key from your table? Review your case well, it is necessary to differentiate the records, thus having something that makes them really unique, extremely important and necessary to UPDATES and DELETES, each case is a case, but before removing it, see if it really is necessary as I have already said.And if you just want to make one SELECT so that this column does not appear, it is simple, just send one: SELECT nome, profissao, nascimento, sexo, peso, altura, nacionalidade FROM tabela WHERE...Lastly, to just remove the primary key function you should run these two querys://Você deve primeiro remover a propriedade de AUTO_INCREMENT e depois
//remover a chave primária
ALTER TABLE tabela MODIFY coluna INT NOT NULL;
ALTER TABLE tabela DROP PRIMARY KEY;
In order for her to be a primary key, just run:ALTER TABLE tabela MODIFY coluna INT NOT NULL PRIMARY KEY AUTO_INCREMENT;