You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
use db_escola;
--- Inserir um registro no banco ---insert into tb_professor (nome, email, cpf)
values (
'Chiquim',
'chiquim@email.com',
'12345678912'
);
--- Inserir mais de um ---insert into tb_professor (nome, email, cpf)
values
(
'Chiquim',
'chiquim@email.com',
'12345678912'
),
(
'Chica',
'chica@email.com',
'22345678912'
),
(
'Maria',
'maria@email.com',
'32345678912'
);
--- Excluir tudo ---deletefrom tb_professor;
--- Excluir um registro ---deletefrom tb_professor where email ='zezin@mail.com';
--- Atualizar todos ---update tb_professor set nome ='Luizinha';
--- Atualizar um registro ---update tb_professor set nome ='Luizinha'where cpf ='12345678912';
--- Selecionar todos os registros ---select*from tb_professor;
--- Selecionar todos os registros que se aplicam a condição ---select*from tb_professor where id =5;
--- Selecionar apenas alguns dados de todos os registros que se aplicam a condição ---select nome, email from tb_professor where id =5;
--- Criar um banco de dados ---createdatabasedb_escola;
--- Usar o banco criado ---
use db_escola;
--- Criar tabela ---createtabletb_professor(
id int(11) primary key auto_increment,
nome varchar(100) not null,
cpf char(11) unique not null,
email varchar(250) unique not null
);
createtabletb_aluno(
id int(11) primary key auto_increment,
nome varchar(100) not null,
cpf char(11) unique not null,
email varchar(250) unique not null,
matricula varchar(10) unique not null
);
createtabledisciplina(
id int(11) primary key auto_increment,
nome varchar(100) not null,
cargaHoraria int(11) not null,
);
createtablecurso(
id int(11) primary key auto_increment,
nome varchar(100) not null,
cpf char(11) unique not null,
);
--- Inserir dados na tabela ---insert into tb_professor (nome, email, cpf)
values (
'Alessandro',
'ale@email.com',
'12345678912'
);
--- Excluir tabela ---droptable tb_professor;