Criar um banco de dados
Resenha: Criar um banco de dados. Pesquise 861.000+ trabalhos acadêmicosPor: allancrs • 19/11/2014 • Resenha • 487 Palavras (2 Páginas) • 357 Visualizações
Create database tin;
Use tin;
create table cliente
(
cod_cli smallint not null,
nome_cli varchar(40) not null,
endereco varchar(40) null,
cidade varchar(20) null,
cep char(08) null,
uf char(02) null,
primary key (cod_cli));
create table vendedor
(
cod_vend smallint not null,
nome_vend varchar(40) not null,
sal_fixo real(9,2) not null,
faixa_comiss char(01) not null,
primary key (cod_vend));
create table produto
(
cod_prod smallint not null,
unid_prod char(03) not null,
desc_prod varchar(20) not null,
val_unit real(9,2) not null,
primary key (cod_prod));
create table pedido
(
num_ped smallint not null,
prazo_entr smallint not null,
cd_cli smallint not null REFERENCES CLIENTE (cod_cli),
cd_vend smallint not null REFERENCES VENDEDOR (cod_vend),
primary key (num_ped));
create table item_pedido
(
no_ped smallint not null REFERENCES PEDIDO (num_ped),
cd_prod smallint not null REFERENCES PRODUTO (cod_prod),
qtd_ped float not null);
INSERIR DADOS TABELA PRODUTO
insert into produto ( cod_prod, unid_prod, desc_prod, val_unit)
values ( ‘1’, ‘Kg’, ‘Chapa de Aço’, ’2.5’);
insert into produto ( cod_prod, unid_prod, desc_prod, val_unit)
values ( ‘2’, ‘Kg’, ‘Cimento ‘, ’4.5’);
insert into produto ( cod_prod, unid_prod, desc_prod, val_unit)
values ( ‘3’, ‘Pct’, ‘Parafuso’, ’2’);
insert into produto ( cod_prod, unid_prod, desc_prod, val_unit)
values ( ‘4’, ‘Mt’, ‘Fio Plastico’, ’2’);
insert into produto ( cod_prod, unid_prod, desc_prod, val_unit)
values ( ‘5’, ‘PRV’, ‘Solvente’, ’1.5’);
TABELA CLIENTE
Insert into cliente (cod_cli, nome_cli, endereco, cidade, uf)
Values (‘1’, ‘Supermercado Carrefour RJ’, ‘ Rua do Mercado, 102’, ‘Rio de Janeiro’, ‘RJ’);
Insert into cliente (cod_cli, nome_cli, endereco, cidade, uf)
Values (‘2’, ‘Supermercado BarataoRJ’, ‘ Rua do Baratao, 7702’, ‘Rio de Janeiro’, ‘RJ’);
Insert into cliente (cod_cli, nome_cli, endereco, cidade, uf)
Values (‘3’, ‘Supermercado Arariboia Nt’, ‘ Rua do Arariboia, 569’, ‘Niteroi’, ‘RJ’);
Insert into cliente (cod_cli, nome_cli, endereco, cidade, uf)
Values (‘4’, ‘UFF’, ‘ Rua do Uff, 865’, ‘Niteroi’, ‘RJ’);
Insert into cliente (cod_cli, nome_cli, endereco, cidade, uf)
Values (‘5’, ’CSN’, ‘ Rua da CSN, 102’, ‘Volta Redonda’, ‘RJ’);
Insert into cliente (cod_cli, nome_cli, endereco, cidade, uf)
Values (‘6’, ’Pegout Resende’, ‘ Rua da Pegout, 249’, ‘Resende’, ‘RJ’);
TABELA VENDEDOR
Insert into vendedor (cod_vend, nome_vend, sal_fixo, faixa_comiss)
Values(‘11’, ‘Paulo Alberto’, ‘1500’, ‘b’);
Insert into vendedor (cod_vend, nome_vend, sal_fixo, faixa_comiss)
Values(‘12’, ‘Ana Cristina’, ‘2100’, ‘a’);
Insert
...