Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
projet_nf17_p19_tdg1_groupe2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Gaetan Carabetta
projet_nf17_p19_tdg1_groupe2
Commits
9fc467ee
Commit
9fc467ee
authored
May 24, 2019
by
Gaetan Carabetta
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update inserts_RO.sql
parent
00cfa936
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
inserts_RO.sql
inserts_RO.sql
+8
-8
No files found.
inserts_RO.sql
View file @
9fc467ee
INSERT
INTO
espece
(
classeEspece
,
espece
)
VALUES
(
'mammifer'
,
"hamster"
);
VALUES
(
'mammifer'
,
'hamster'
);
/
INSERT
INTO
espece
(
classeEspece
,
espece
)
VALUES
(
'mammifer'
,
"chien"
);
VALUES
(
'mammifer'
,
'chien'
);
/
INSERT
INTO
espece
(
classeEspece
,
espece
)
VALUES
(
'mammifer'
,
"chat"
);
VALUES
(
'mammifer'
,
'chat'
);
/
INSERT
INTO
client
(
id_client
,
nom
,
prenom
,
dn
,
adresse
,
numeros
)
VALUES
(
1
,
"VALDIVIA"
,
"Osvaldo"
,
"27-12-1998"
,
"6 bis rue Winston Churchill"
,
listNumeros
(
"1029384756"
,
"5534034564"
));
VALUES
(
1
,
'VALDIVIA'
,
'Osvaldo'
,
to_date
(
'27-12-1998'
,
'DD-MM-YYYY'
),
'6 bis rue Winston Churchill'
,
listNumeros
(
'1029384756'
,
'5534034564'
));
/
INSERT
INTO
client
(
id_client
,
nom
,
prenom
,
dn
,
adresse
,
numeros
)
VALUES
(
2
,
"CARABETTA"
,
"Gaetan"
,
"10-06-1996"
,
"16 rue Gambeta"
,
listNumeros
(
"5647384950"
,
"1738493728"
,
"5748394782"
));
VALUES
(
2
,
'CARABETTA'
,
'Gaetan'
,
to_date
(
'10-06-1996'
,
'DD-MM-YYYY'
),
'16 rue Gambeta'
,
listNumeros
(
'5647384950'
,
'1738493728'
,
'5748394782'
));
/
INSERT
INTO
client
(
id_client
,
nom
,
prenom
,
dn
,
adresse
,
numeros
)
VALUES
(
3
,
"ALANIS"
,
"Oswaldo"
,
"05-14-1998"
,
"52 av. Compiegne "
,
listNumeros
(
"5647384950"
));
VALUES
(
3
,
'ALANIS'
,
'Oswaldo'
,
to_date
(
'14-05-1998'
,
'DD-MM-YYYY'
),
'52 av. Compiegne '
,
listNumeros
(
'5647384950'
));
/
INSERT
INTO
animal
(
id_animal
,
id_client
,
espece
,
nom
,
poid
,
TAILLE
,
dn
,
listT
raitements
)
VALUES
(
1
,
1
,
"chien"
,
"Diego"
,
4050
,
300
,
"15-04-2005"
,
listTraitements
(
traitement
(
1
,
"09-10-2018"
,
5
,
2
,
"Pierre"
,
"Hueys"
),
traitement
(
2
,
"11-12-2018"
,
5
,
2
,
"Pierre"
,
"Orphex"
)));
INSERT
INTO
animal
(
id_animal
,
id_client
,
espece
,
nom
,
poid
,
TAILLE
,
dn
,
t
raitements
)
VALUES
(
1
,
1
,
'chien'
,
'Diego'
,
4050
,
300
,
to_date
(
'15-04-2005'
,
'DD-MM-YYYY'
),
listTraitements
(
traitement
(
1
,
to_date
(
'09-10-2018'
,
'DD-MM-YYYY'
),
5
,
2
,
'Pierre'
,
'Hueys'
),
traitement
(
2
,
to_date
(
'11-12-2018'
,
'DD-MM-YYYY'
),
5
,
2
,
'Pierre'
,
'Orphex'
)));
Write
Preview
Markdown
is supported
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