-
Notifications
You must be signed in to change notification settings - Fork 0
/
carga_jugadores_plantillas
93 lines (55 loc) · 1.53 KB
/
carga_jugadores_plantillas
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/* insertar jugadores */
insert into jugadores (jug_apellido, jug_nombre, jug_fecha_nacimiento, jug_nacionalidad)
select
apellido
,nombre
,STR_TO_DATE(CONCAT(SUBSTRING(fecha,4,8), SUBSTRING(fecha,25,4)),'%b %d %Y') as f
,l.lug_id
from excel_jugadores x
left join lugares l on l.lug_abreviatura = x.nacionalidad
where lug_tipo = 'pais'
order by l.lug_id;
/* insertar plantillas */
insert into plantillas_torneo(plt_numero_camiseta,eqp_id,jug_id,tor_id)
select
1
,eqp_id
,jug_id
,1
from excel_jugadores x
left join equipos e on e.eqp_nombre_corto = x.equipo
left join jugadores j on x.apellido = j.jug_apellido and x.nombre = j.jug_nombre
order by jug_id;
/*************************************************************************************************/
/* verificar que no existan jugadores repetidos */
select apellido, nombre, count(*)
from excel_jugadores
group by apellido, nombre
having count(*) > 1;
/* limpiar equipos */
select distinct equipo
from excel_jugadores
order by 1;
select eqp_nombre_corto
from equipos
order by 1;
select distinct x.equipo
from excel_jugadores x
left join equipos e on e.eqp_nombre_corto = x.equipo
where eqp_id is null
order by eqp_nombre_corto;
update excel_jugadores
set equipo = 'Católica'
where equipo = 'Universidad Católica';
/* limpiar nacionalidad */
select *
from excel_jugadores
where nacionalidad = 'afr';
select *
from lugares
where lug_tipo = 'pais'
and lug_nombre like '%PER%'
order by lug_abreviatura;
update excel_jugadores
set nacionalidad = 'EC'
where nacionalidad = 'AFR';