I have a table Courses:
create table Cursos(
ID_curso int not null auto_increment,
Nome_curso varchar (50),
primary key (ID_curso)
)default charset = utf8;
And another table registered:
create table Cadastrados(
Nome varchar(50),
Matricul...
asked by
03.04.2017 / 17:00