Posts by Leonardo • 1 point
1 post
-
-3
votes1
answer40
viewsQ: How to fix the error ? Error happens when I am trying to insert data into the course table
CREATE TABLE TIPO ( CODIGO INTEGER UNSIGNED NOT NULL AUTO_INCREMENT, -- Código interno (PK) TIPO VARCHAR(32) NOT NULL, -- Descrição PRIMARY KEY(CODIGO) -- Define o campo CODIGO como PK (Primary Key)…