Jean-Francois Leveque

Suppression modification accidentellle.

1 tee creeV3Country.log 1 tee creeV3Country.log
2 2
3 --- create table Country ( 3 +create table Country (
4 --- countryId int(11) NOT NULL AUTO_INCREMENT, 4 + countryId int(11) NOT NULL AUTO_INCREMENT,
5 --- countryName varchar(100) DEFAULT NULL, 5 + countryName varchar(100) DEFAULT NULL,
6 --- PRIMARY KEY ('countryId') 6 + PRIMARY KEY ('countryId')
7 --- ) ENGINE=InnoDB DEFAULT CHARSET=utf8; 7 +) ENGINE=InnoDB DEFAULT CHARSET=utf8;
8 8
9 insert into Country (countryId, countryName) 9 insert into Country (countryId, countryName)
10 - select ID_PAYS, LIB_PAYS from v2.pays; 10 + select ID_PAYS, LIB_PAYS from pays;
11 11
12 --- show create table Country;
...\ No newline at end of file ...\ No newline at end of file
12 +show create table Country;
...\ No newline at end of file ...\ No newline at end of file
......