Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
projet_nf17_p19_tdg1_groupe2
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Packages
Packages
Container Registry
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Gaetan Carabetta
projet_nf17_p19_tdg1_groupe2
Commits
de5b0b74
Commit
de5b0b74
authored
Jun 06, 2019
by
Gaetan Carabetta
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
correction sql
parent
e06e5c45
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
sql/insertsXML.sql
sql/insertsXML.sql
+6
-6
No files found.
sql/insertsXML.sql
View file @
de5b0b74
...
...
@@ -4,9 +4,9 @@ INSERT INTO classeEspece (nomClasse) VALUES ('oiseau');
INSERT
INTO
classeEspece
(
nomClasse
)
VALUES
(
'autres'
);
INSERT
INTO
client
(
idClient
,
nom
,
prenom
,
ddn
,
adresse
,
numero
)
VALUES
(
1
,
'Harlan'
,
'Wise'
,
'1970-09-07'
,
'Apdo.:630-5180 Fusce Avenida'
,
'0132102368'
);
INSERT
INTO
client
(
idClient
,
nom
,
prenom
,
ddn
,
adresse
,
numero
)
VALUES
(
2
,
'Lee'
,
'Munoz'
,
'1985-01-31'
,
'5900 Faucibus '
,
'0721229832'
);
INSERT
INTO
client
(
idClient
,
nom
,
prenom
,
ddn
,
adresse
,
numero
)
VALUES
(
3
,
'Gisela'
,
'Zamora'
,
'1984-06-18'
,
'2165 Donec Avda.'
,
'0715456201'
);
INSERT
INTO
client
(
idClient
,
nom
,
prenom
,
ddn
,
adresse
,
numero
)
VALUES
(
1
,
'Harlan'
,
'Wise'
,
to_date
(
'1970-09-07'
,
'YYYY-MM-DD'
)
,
'Apdo.:630-5180 Fusce Avenida'
,
'0132102368'
);
INSERT
INTO
client
(
idClient
,
nom
,
prenom
,
ddn
,
adresse
,
numero
)
VALUES
(
2
,
'Lee'
,
'Munoz'
,
to_date
(
'1985-01-31'
,
'YYYY-MM-DD'
)
,
'5900 Faucibus '
,
'0721229832'
);
INSERT
INTO
client
(
idClient
,
nom
,
prenom
,
ddn
,
adresse
,
numero
)
VALUES
(
3
,
'Gisela'
,
'Zamora'
,
to_date
(
'1984-06-18'
,
'YYYY-MM-DD'
)
,
'2165 Donec Avda.'
,
'0715456201'
);
INSERT
INTO
espece
(
nomEspece
,
nomClasse
)
VALUES
(
'hamster'
,
'mammifere'
);
...
...
@@ -19,7 +19,7 @@ INSERT INTO espece (nomEspece,nomClasse) VALUES ('tortue','autres');
INSERT
INTO
animal
VALUES
(
1
,
'Nita'
,
3079
,
62
,
'2018-07-26'
,
1
,
'Nita'
,
3079
,
62
,
to_date
(
'2018-07-26'
,
'YYYY-MM-DD'
)
,
XMLTYPE
(
'<traitement>
<veterinaire>
<nom> MURPHY </nom>
...
...
@@ -45,7 +45,7 @@ INSERT INTO animal VALUES (
INSERT
INTO
animal
VALUES
(
2
,
'Tanisha'
,
4107
,
12
,
'2018-06-11'
,
2
,
'Tanisha'
,
4107
,
12
,
to_date
(
'2018-06-11'
,
'YYYY-MM-DD'
)
,
XMLTYPE
(
'<traitement>
<veterinaire>
<nom> ZAMORA </nom>
...
...
@@ -70,7 +70,7 @@ INSERT INTO animal VALUES (
INSERT
INTO
animal
VALUES
(
3
,
'Rajah'
,
3221
,
28
,
'2011-10-12'
,
3
,
'Rajah'
,
3221
,
28
,
to_date
(
'2011-10-12'
,
'YYYY-MM-DD'
)
,
XMLTYPE
(
'<traitement>
<veterinaire>
<nom> ZAMORA </nom>
...
...
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