Skip to content

Commit

Permalink
Sample Files
Browse files Browse the repository at this point in the history
  • Loading branch information
TexanInParis committed Oct 3, 2016
1 parent 709ff80 commit 117fc03
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion IBM DB2/Chapter 01/Listing 1.003.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down
Binary file modified Microsoft Access/Sample Databases/Item04Example.accdb
Binary file not shown.
2 changes: 1 addition & 1 deletion Microsoft SQL Server/Chapter 01/Listing 1.003.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down
2 changes: 1 addition & 1 deletion MySQL/Chapter 01/Listing 1.003.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down
2 changes: 1 addition & 1 deletion Oracle/Chapter 01/Listing 1.003.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down
2 changes: 1 addition & 1 deletion PostgreSQL/Chapter 01/Listing 1.003.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down

0 comments on commit 117fc03

Please sign in to comment.