Skip to content

Commit

Permalink
Sample Files Chapter 2
Browse files Browse the repository at this point in the history
  • Loading branch information
TexanInParis committed Jul 13, 2016
1 parent a5a4a03 commit a0a8089
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Microsoft SQL Server/Chapter 02/Listing 2.008.sql
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ GO

-- Listing 2.8 Table Creation SQL
CREATE TABLE Customers (
CustomerID int PRIMARY KEY ,
CustomerID int PRIMARY KEY NOT NULL ,
CustFirstName varchar (25) NULL ,
CustLastName varchar (25) NULL ,
CustStreetAddress varchar (50) NULL ,
Expand Down
2 changes: 1 addition & 1 deletion MySQL/Chapter 02/Listing 2.008.sql
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ USE Item11Example;

-- Listing 2.8 Table Creation SQL
CREATE TABLE Customers (
CustomerID int PRIMARY KEY ,
CustomerID int PRIMARY KEY NOT NULL ,
CustFirstName varchar (25) NULL ,
CustLastName varchar (25) NULL ,
CustStreetAddress varchar (50) NULL ,
Expand Down
2 changes: 1 addition & 1 deletion Oracle/Chapter 02/Listing 2.008.sql
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ALTER SESSION SET CURRENT_SCHEMA = Item11Example;
-- Listing 2.8 Table Creation SQL

CREATE TABLE Customers (
CustomerID int PRIMARY KEY ,
CustomerID int PRIMARY KEY NOT NULL ,
CustFirstName varchar (25) NULL ,
CustLastName varchar (25) NULL ,
CustStreetAddress varchar (50) NULL ,
Expand Down
2 changes: 1 addition & 1 deletion PostgreSQL/Chapter 02/Listing 2.008.sql
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ SET search_path = Item11Example;
-- Listing 2.8 Table Creation SQL

CREATE TABLE Customers (
CustomerID int PRIMARY KEY ,
CustomerID int PRIMARY KEY NOT NULL ,
CustFirstName varchar (25) NULL ,
CustLastName varchar (25) NULL ,
CustStreetAddress varchar (50) NULL ,
Expand Down

0 comments on commit a0a8089

Please sign in to comment.