Trabalho de banco de dados
2: Create table tb_estado ( sg_estado varchar (02) not null, nm_estado varchar (50) not null,
Primary Key (sg_estado));
Create table tb_cidade ( cd_cidade int identity (1,1) not null, nm_cidade varchar (20) not null, sg_estado varchar (02) not null,
Primary Key (cd_cidade),
Foreign Key (sg_estado) references tb_estado (sg_estado));
Create table tb_bairro ( cd_bairro int identity (1,1) not null, nm_bairro varchar (50) not null, cd_cidade int not null,
Primary Key (cd_bairro),
Foreign Key (cd_cidade) references tb_cidade (cd_cidade));
Create table tb_funcionario ( cd_func int identity (1,1) not null, nm_func varchar (50) not null, num_telefone varchar (10)not null, num_celular varchar (10) not null, dt_nasc datetime not null, vl_salario real not null, ind_possui_dependente bit not null,
Primary Key (cd_func));
Create table tb_endereco_funcionario ( cd_func int identity (1,1) not null, cd_bairro int not null, rua varchar (50) not null, numero varchar (05)not null, complemento varchar (10) not null,
Primary Key (cd_func, cd_bairro));
Create table tb_categoria_cliente ( cd_categoria int identity (1,1) not null, nm_categoria varchar (50) not null, min_compra real not null, max_compra real not null,
Primary Key (cd_categoria));
Create table tb_cliente ( cd_cliente int identity (1,1) not null, nm_cliente Varchar (50) not null, num_telefone real not null, num_celular real not null, dt_nasc datetime not null, cd_categoria_cliente int not null,
Primary Key (cd_cliente),
Foreign Key (cd_categoria_cliente)references tb_categoria_cliente (cd_categoria_cliente));
Create table tb_endereco_cliente ( cd_cliente int identity (1,1) not null, cd_bairro int not null, rua varchar (25) not null, numero varchar (5)not null, complemento varchar (20) not null
Primary Key (cd_cliente, cd_bairro));
Create table tb_fornecedor( cd_fornecedor int identity (1,1) not null,