Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Nu Huyen Trang Pham
Projet NF17 td5 grps4
Commits
41f469d9
Commit
41f469d9
authored
Apr 03, 2019
by
Nu Huyen Trang Pham
Browse files
Création des vues Personne, Personnel
parent
68ebb952
Changes
1
Show whitespace changes
Inline
Side-by-side
create_view.sql
0 → 100644
View file @
41f469d9
/*Vue Personnel*/
CREATE
VIEW
Personnel
AS
(
Select
*
From
Assistant
UNION
ALL
SELECT
*
FROM
Veterinaire
);
/*Vue Personne*/
CREATE
VIEW
Personne
AS
(
Select
Nom
,
Prenom
,
Date_de_naissance
,
Addresse
,
Numero_de_telephone
From
Client
UNION
ALL
SELECT
Nom
,
Prenom
,
Date_de_naissance
,
Addresse
,
Numero_de_telephone
FROM
Personnel
);
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment