INSERT INTO Station (NomStation, Capacite, Lieu, Region, tarif) VALUES ('Venusa',350,'Guadeloupe','Antilles',1200); INSERT INTO Station (NomStation, Capacite, Lieu, Region, tarif) VALUES ('Farniente',200,'Seychelles','Ocean Indien',1500); INSERT INTO Station (NomStation, Capacite, Lieu, Region, tarif) VALUES ('Santalba',150,'Martinique','Antilles',2000); INSERT INTO Station (NomStation, Capacite, Lieu, Region, tarif) VALUES ('Passac',400,'Alpes','Europe',1000); INSERT INTO Activite (NomStation, Libelle, prix) VALUES('Venusa','Voile',150); INSERT INTO Activite (NomStation, Libelle, prix) VALUES('Venusa','Plongee',120); INSERT INTO Activite (NomStation, Libelle, prix) VALUES('Farniente','Plongee',130); INSERT INTO Activite (NomStation, Libelle, prix) VALUES('Passac','Ski',200); INSERT INTO Activite (NomStation, Libelle, prix) VALUES('Passac','Piscine',20); INSERT INTO Activite (NomStation, Libelle, prix) VALUES('Santalba','Kayac',50); INSERT INTO CLIENT (id, nom, prenom, ville, region, solde) VALUES(10,'Fogg','Phileas','Londres','Europe',12465); INSERT INTO CLIENT (id, nom, prenom, ville, region, solde) VALUES(20,'Pascal','Blaise','Paris','Europe',6763); INSERT INTO CLIENT (id, nom, prenom, ville, region, solde) VALUES(30,'Kerouac','Jack','New York','Amerique',9812); INSERT INTO SEJOUR (idClient, station, debut, nbPlaces) VALUES(20,'Venusa',19980803,4); INSERT INTO SEJOUR (idClient, station, debut, nbPlaces) VALUES(10,'Passac',19980701,2); INSERT INTO SEJOUR (idClient, station, debut, nbPlaces) VALUES(30,'Santalba',19960814,5); INSERT INTO SEJOUR (idClient, station, debut, nbPlaces) VALUES(20,'Santalba',19980803,4); INSERT INTO SEJOUR (idClient, station, debut, nbPlaces) VALUES(30,'Passac',19980815,3); INSERT INTO SEJOUR (idClient, station, debut, nbPlaces) VALUES(30,'Venusa',19980803,3); INSERT INTO SEJOUR (idClient, station, debut, nbPlaces) VALUES(30,'Farniente',19990624,5); INSERT INTO SEJOUR (idClient, station, debut, nbPlaces) VALUES(10,'Farniente',19980905,3);