784 |
jpm |
1 |
-- -----------------------------------------------------
|
1376 |
raphael |
2 |
-- View `del_utilisateurs`
|
1354 |
raphael |
3 |
-- -----------------------------------------------------
|
1376 |
raphael |
4 |
DROP VIEW IF EXISTS `del_utilisateurs` ;
|
|
|
5 |
DROP TABLE IF EXISTS `del_utilisateurs`;
|
|
|
6 |
CREATE OR REPLACE VIEW del_utilisateur AS
|
|
|
7 |
SELECT
|
|
|
8 |
U_ID AS id_utilisateur,
|
|
|
9 |
CONVERT(U_SURNAME USING UTF8) AS prenom,
|
|
|
10 |
CONVERT(U_NAME USING UTF8) AS nom,
|
|
|
11 |
CONVERT(U_MAIL USING UTF8) AS courriel,
|
|
|
12 |
CONVERT(U_PASSWD USING UTF8) AS mot_de_passe
|
1354 |
raphael |
13 |
FROM tela_prod_v4.annuaire_tela;
|
|
|
14 |
|
1376 |
raphael |
15 |
-- -----------------------------------------------------
|
|
|
16 |
-- View `del_observations`
|
|
|
17 |
-- -----------------------------------------------------
|
|
|
18 |
DROP VIEW IF EXISTS `del_observations` ;
|
|
|
19 |
DROP TABLE IF EXISTS `del_observations`;
|
|
|
20 |
CREATE OR REPLACE VIEW del_observation AS
|
|
|
21 |
SELECT id_observation, if((char_length(o.ce_utilisateur) <> 32),cast(o.ce_utilisateur as unsigned),0) AS ce_utilisateur, prenom_utilisateur, nom_utilisateur, courriel_utilisateur, nom_sel, nom_sel_nn, nom_ret, nom_ret_nn, nt, famille,
|
|
|
22 |
ce_zone_geo, zone_geo, lieudit, station, milieu,
|
|
|
23 |
date_observation, mots_cles_texte, commentaire,
|
|
|
24 |
date_creation, date_modification, date_transmission
|
|
|
25 |
FROM tb_cel.cel_obs AS o
|
|
|
26 |
WHERE transmission = '1' ;
|
1354 |
raphael |
27 |
|
|
|
28 |
-- -----------------------------------------------------
|
1376 |
raphael |
29 |
-- View `del_images`
|
784 |
jpm |
30 |
-- -----------------------------------------------------
|
1376 |
raphael |
31 |
DROP VIEW IF EXISTS `del_images` ;
|
|
|
32 |
DROP TABLE IF EXISTS `del_images`;
|
|
|
33 |
CREATE OR REPLACE VIEW del_image AS
|
|
|
34 |
SELECT i.id_image, if((char_length(i.ce_utilisateur) <> 32),cast(i.ce_utilisateur as unsigned),0) AS ce_utilisateur, i.prenom_utilisateur, i.nom_utilisateur, i.courriel_utilisateur, i.hauteur, i.largeur, i.date_prise_de_vue, i.mots_cles_texte,
|
|
|
35 |
i.commentaire, i.nom_original, i.date_modification, i.date_creation, i.publiable_eflore
|
|
|
36 |
FROM tb_cel.cel_images AS i
|
|
|
37 |
INNER JOIN tb_cel.cel_obs_images AS oi ON (i.id_image = oi.id_image)
|
|
|
38 |
INNER JOIN tb_cel.cel_obs AS o ON (oi.id_observation = o.id_observation)
|
|
|
39 |
WHERE o.transmission = '1' ;
|
714 |
jpm |
40 |
|
784 |
jpm |
41 |
-- -----------------------------------------------------
|
1376 |
raphael |
42 |
-- View `del_obs_images`
|
784 |
jpm |
43 |
-- -----------------------------------------------------
|
1376 |
raphael |
44 |
DROP VIEW IF EXISTS `del_obs_images` ;
|
|
|
45 |
DROP TABLE IF EXISTS `del_obs_images`;
|
|
|
46 |
CREATE OR REPLACE VIEW del_obs_image AS
|
|
|
47 |
SELECT oi.id_image, oi.id_observation, oi.date_liaison
|
|
|
48 |
FROM tb_cel.cel_obs_images AS oi
|
|
|
49 |
INNER JOIN tb_cel.cel_obs AS o ON (oi.id_observation = o.id_observation)
|
|
|
50 |
WHERE o.transmission = '1' ;
|
784 |
jpm |
51 |
|
|
|
52 |
-- -----------------------------------------------------
|
1376 |
raphael |
53 |
-- View `v_del_image`
|
784 |
jpm |
54 |
-- -----------------------------------------------------
|
1376 |
raphael |
55 |
DROP VIEW IF EXISTS `v_del_image` ;
|
|
|
56 |
DROP TABLE IF EXISTS `v_del_image`;
|
|
|
57 |
CREATE OR REPLACE VIEW v_del_image AS
|
|
|
58 |
SELECT o.*, i.id_image, i.ordre AS i_ordre,
|
|
|
59 |
i.ce_utilisateur AS i_ce_utilisateur, i.prenom_utilisateur AS i_prenom_utilisateur, i.nom_utilisateur AS i_nom_utilisateur, i.courriel_utilisateur AS i_courriel_utilisateur,
|
|
|
60 |
i.mots_cles_texte AS i_mots_cles_texte, hauteur, largeur, date_prise_de_vue, i.commentaire AS i_commentaire, nom_original, publiable_eflore
|
|
|
61 |
FROM tb_cel.cel_obs AS o
|
|
|
62 |
INNER JOIN tb_cel.cel_obs_images oi ON oi.id_observation = o.id_observation
|
|
|
63 |
INNER JOIN tb_cel.cel_images i ON i.id_image = oi.id_image
|
|
|
64 |
WHERE o.transmission = '1';
|