1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
Delete cli_client;
Insert Into cli_client (cli_id, nom) Values (1, 'Client1');
Insert Into cli_client (cli_id, nom) Values (2, 'Client2');
Insert Into cli_client (cli_id, nom) Values (3, 'Client3');
Delete cmd_commande;
Insert Into cmd_commande (cmd_id, cli_id, dat_commande)
Values (1, 1, to_date('01/01/2010', 'DD/MM/YYYY'));
Insert Into cmd_commande (cmd_id, cli_id, dat_commande)
Values (2, 1, to_date('01/02/2010', 'DD/MM/YYYY'));
Insert Into cmd_commande (cmd_id, cli_id, dat_commande)
Values (3, 1, to_date('01/06/2010', 'DD/MM/YYYY'));
Insert Into cmd_commande (cmd_id, cli_id, dat_commande)
Values (4, 1, to_date('01/11/2010', 'DD/MM/YYYY'));
Insert Into cmd_commande (cmd_id, cli_id, dat_commande)
Values (5, 2, to_date('01/01/2010', 'DD/MM/YYYY'));
Insert Into cmd_commande (cmd_id, cli_id, dat_commande)
Values (6, 2, to_date('01/03/2010', 'DD/MM/YYYY'));
Insert Into cmd_commande (cmd_id, cli_id, dat_commande)
Values (7, 2, to_date('01/05/2010', 'DD/MM/YYYY'));
Insert Into cmd_commande (cmd_id, cli_id, dat_commande)
Values (8, 2, to_date('01/07/2010', 'DD/MM/YYYY'));
Insert Into cmd_commande (cmd_id, cli_id, dat_commande)
Values (9, 3, to_date('01/08/2010', 'DD/MM/YYYY'));
Insert Into cmd_commande (cmd_id, cli_id, dat_commande)
Values (10, 3, to_date('01/12/2010', 'DD/MM/YYYY'));
Commit; |
Partager