1: create database estoque
2: create table vendedor
3: (
4: idvendedor int not null primary key identity(1,1),
5: nomevendedor varchar(300),
6: cpf bigint not null,
7: celular int,
8: )
9: create table produto
10: (
11: idproduto int not null primary key identity(1,1),
12: descricao text,
13: qtdatual int,
14: qtdmin int,
15: valorunidade float,
16: )
17: create table cliente
18: (
19: idcliente int not null primary key identity(1,1),
20: )
21: --selecionar tabela
22: select * from produto
23: --exibir todas as tabelas do BD
24: SELECT *FROM sys.Tables
25: --a mesma coisa do camando de cima
26: select * from sysobjects where xtype='u'
27: --não sei o que é.
28: select * FROM sys.sysobjects
29: create table pedido
30: (
31: IDPEDIDO INT NOT NULL PRIMARY KEY IDENTITY(1,1),
32: DATA DATETIME,
33: IDCLIENTE INT REFERENCES CLIENTE(IDCLIENTE),
34: IDVENDEDOR INT REFERENCES VENDEDOR(IDVENDEDOR),
35: )
36: CREATE TABLE ITEMPEDIDO
37: (
38: IDITEMPEDIDO INT NOT NULL PRIMARY KEY IDENTITY(1,1),
39: IDPRODUTO INT REFERENCES PRODUTO(IDPRODUTO),
40: IDPEDIDO INT REFERENCES PEDIDO(IDPEDIDO),
41: )
42: ALTER TABLE ITEMPEDIDO ADD QTDVENDIDO INT, VALORVENDA FLOAT
43: SELECT * FROM ITEMPEDIDO
44: ALTER TABLE CLIENTE ADD NOMECLIENTE VARCHAR(225), CPFCLIENTE BIGINT
45: SELECT * FROM PEDIDO
29 de ago. de 2014
CRIANDO UM BANCO DE DADOS DE CONTROLE DE PEDIDOS/ESQUOTE, NO SQL SERVER
Assinar:
Postar comentários (Atom)
Nenhum comentário:
Postar um comentário