-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodo sql.sql
80 lines (63 loc) · 1.41 KB
/
todo sql.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
Create database ALMACEN
go
Use ALMACEN
go
Create table Empleados(
ID_Empleado int identity,
Nombre varchar(30),
Apellido varchar(30),
Puesto varchar(100),
Sexo varchar(20),
Edad int,
Direccion varchar(60),
Telefono_Casa varchar(20),
Telefono_Personal varchar(30),
Tiene_Hijos bit,
Tiene_Pareja bit,
Primary key(ID_Empleado)
)
go
Create table Nomina(
ID_Empleado int identity,
Nombre varchar(30),
Apellido varchar(30),
Puesto varchar(20),
Sueldo_Bruto money,
Prestaciones money,
Sueldo_Horas_Extras money,
Primary key(ID_Empleado)
)
go
select*from Empleados
create table Usuarios
(
Nombre varchar(30) not null,
Apellido varchar(30) not null,
Usuario varchar(20) not null,
Contraseña varchar(20) not null,
Tipo varchar(20) not null,
primary key(Usuario)
)
create table PRODUCTOS
(
Codigo_Producto int identity,
Nombre_Producto varchar(30) not null,
Categoria varchar(30) not null,
Cantidades int not null,
Precio decimal not null,
Fecha_entrega varchar(50)not null,
Proveedor varchar(30),
primary key(Codigo_Producto)
)
create table PROVEEDORES
(
Codigo_Proveedor int identity,
Proveedor varchar(30) not null,
Direccion varchar(100) not null,
Pais_procedencia varchar(30),
sucursal_rd bit,
primary key(Codigo_Proveedor)
)
insert into Usuarios values ('Jaime', 'Hernández', 'admin', 'contraseña', 'Admin')
Insert into PRODUCTOS values('Salami Induveca', 'Carnes', 1000, 100, '9/5/2019', 'Induveca')
select * from Usuarios