error in importing table into database

1

I'm trying to import a table but it has this error.

-

- Structure of the table tb_colaboradores

CREATE TABLE tb_colaboradores (    id_colaborador int (11) NOT NULL,    nome varchar (40) NOT NULL,    username varchar (20) NOT NULL,    senha varchar (20) NOT NULL,    acesso int (11) NOT NULL ) ENGINE = InnoDB DEFAULT CHARSET = latin1;

MySQL Messages: Documentation

1046 - Aucune base n'a tà © sà © sà © lectionnà © e

Someone could help me.

    
asked by anonymous 27.05.2017 / 17:07

1 answer

0

Before importing a table, make sure the database was created and after it is created, click its name (if it is in phpmyadmin) to enter the database. After that you can import.

    
27.05.2017 / 17:13