I say this because there are two ways, so I understood.
You have the:
INSERT INTO teste SET nome = "Lucas", sobrenome = "Alves";
And also the way:
INSERT INTO teste (nome, sobrenome) VALUES ("Lucas", "Alves");
Question of speed, good practices, etc., has anything to do, or is it all the same?