diff --git a/IBM DB2/Chapter 01/Listing 1.003.sql b/IBM DB2/Chapter 01/Listing 1.003.sql index 03e1707..201f291 100644 --- a/IBM DB2/Chapter 01/Listing 1.003.sql +++ b/IBM DB2/Chapter 01/Listing 1.003.sql @@ -16,7 +16,7 @@ CREATE TABLE Authors AuthCountry varchar (35)); INSERT INTO Authors ( AuthFirst, AuthMid, AuthLast, AuthStNum, AuthStreet, AuthCity, AuthStProv, AuthPostal, AuthCountry ) -VALUES ('John', 'L.', 'Viescas', '1175', '7th Street', 'Austin', 'TX', '78701', 'USA'); +VALUES ('John', 'L.', 'Viescas', '144', 'Boulevard Saint-Germain', 'Paris', ' ', '75006', 'France'); INSERT INTO Authors ( AuthFirst, AuthMid, AuthLast, AuthStNum, AuthStreet, AuthCity, AuthStProv, AuthPostal, AuthCountry ) VALUES ('Douglas', 'J.', 'Steele', '555', 'Sherbourne St.', 'Toronto', 'ON', 'M4X 1W6', 'Canada'); diff --git a/Microsoft Access/Sample Databases/Item04Example.accdb b/Microsoft Access/Sample Databases/Item04Example.accdb index 767f2ec..728437c 100644 Binary files a/Microsoft Access/Sample Databases/Item04Example.accdb and b/Microsoft Access/Sample Databases/Item04Example.accdb differ diff --git a/Microsoft SQL Server/Chapter 01/Listing 1.003.sql b/Microsoft SQL Server/Chapter 01/Listing 1.003.sql index 4173de2..141f1bb 100644 --- a/Microsoft SQL Server/Chapter 01/Listing 1.003.sql +++ b/Microsoft SQL Server/Chapter 01/Listing 1.003.sql @@ -18,7 +18,7 @@ CREATE TABLE Authors GO INSERT INTO Authors ( AuthFirst, AuthMid, AuthLast, AuthStNum, AuthStreet, AuthCity, AuthStProv, AuthPostal, AuthCountry ) -VALUES ('John', 'L.', 'Viescas', '1175', '7th Street', 'Austin', 'TX', '78701', 'USA'); +VALUES ('John', 'L.', 'Viescas', '144', 'Boulevard Saint-Germain', 'Paris', ' ', '75006', 'France'); INSERT INTO Authors ( AuthFirst, AuthMid, AuthLast, AuthStNum, AuthStreet, AuthCity, AuthStProv, AuthPostal, AuthCountry ) VALUES ('Douglas', 'J.', 'Steele', '555', 'Sherbourne St.', 'Toronto', 'ON', 'M4X 1W6', 'Canada'); diff --git a/MySQL/Chapter 01/Listing 1.003.sql b/MySQL/Chapter 01/Listing 1.003.sql index 40da15a..b28c9db 100644 --- a/MySQL/Chapter 01/Listing 1.003.sql +++ b/MySQL/Chapter 01/Listing 1.003.sql @@ -16,7 +16,7 @@ CREATE TABLE Authors AuthCountry varchar (35)); INSERT INTO Authors ( AuthFirst, AuthMid, AuthLast, AuthStNum, AuthStreet, AuthCity, AuthStProv, AuthPostal, AuthCountry ) -VALUES ('John', 'L.', 'Viescas', '1175', '7th Street', 'Austin', 'TX', '78701', 'USA'); +VALUES ('John', 'L.', 'Viescas', '144', 'Boulevard Saint-Germain', 'Paris', ' ', '75006', 'France'); INSERT INTO Authors ( AuthFirst, AuthMid, AuthLast, AuthStNum, AuthStreet, AuthCity, AuthStProv, AuthPostal, AuthCountry ) VALUES ('Douglas', 'J.', 'Steele', '555', 'Sherbourne St.', 'Toronto', 'ON', 'M4X 1W6', 'Canada'); diff --git a/Oracle/Chapter 01/Listing 1.003.sql b/Oracle/Chapter 01/Listing 1.003.sql index d3bafa1..99f03a4 100644 --- a/Oracle/Chapter 01/Listing 1.003.sql +++ b/Oracle/Chapter 01/Listing 1.003.sql @@ -28,7 +28,7 @@ END; / INSERT INTO Authors ( AuthorID, AuthFirst, AuthMid, AuthLast, AuthStNum, AuthStreet, AuthCity, AuthStProv, AuthPostal, AuthCountry ) -VALUES (Authors_Sequence.NEXTVAL, 'John', 'L.', 'Viescas', '1175', '7th Street', 'Austin', 'TX', '78701', 'USA'); +VALUES (Authors_Sequence.NEXTVAL, 'John', 'L.', 'Viescas', '144', 'Boulevard Saint-Germain', 'Paris', ' ', '75006', 'France'); INSERT INTO Authors ( AuthorID, AuthFirst, AuthMid, AuthLast, AuthStNum, AuthStreet, AuthCity, AuthStProv, AuthPostal, AuthCountry ) VALUES (Authors_Sequence.NEXTVAL, 'Douglas', 'J.', 'Steele', '555', 'Sherbourne St.', 'Toronto', 'ON', 'M4X 1W6', 'Canada'); diff --git a/PostgreSQL/Chapter 01/Listing 1.003.sql b/PostgreSQL/Chapter 01/Listing 1.003.sql index 12d570a..aa35478 100644 --- a/PostgreSQL/Chapter 01/Listing 1.003.sql +++ b/PostgreSQL/Chapter 01/Listing 1.003.sql @@ -16,7 +16,7 @@ CREATE TABLE Authors ); INSERT INTO Authors ( AuthFirst, AuthMid, AuthLast, AuthStNum, AuthStreet, AuthCity, AuthStProv, AuthPostal, AuthCountry ) -VALUES ('John', 'L.', 'Viescas', '1175', '7th Street', 'Austin', 'TX', '78701', 'USA'); +VALUES ('John', 'L.', 'Viescas', '144', 'Boulevard Saint-Germain', 'Paris', ' ', '75006', 'France'); INSERT INTO Authors ( AuthFirst, AuthMid, AuthLast, AuthStNum, AuthStreet, AuthCity, AuthStProv, AuthPostal, AuthCountry ) VALUES ('Douglas', 'J.', 'Steele', '555', 'Sherbourne St.', 'Toronto', 'ON', 'M4X 1W6', 'Canada');