All Downloads are FREE. Search and download functionalities are using the official Maven repository.

db.books.30_tables_02_pk_autoinc_E.sql Maven / Gradle / Ivy

-- Table with identity column, generated
-- with an unnamed primary key
-- Microsoft SQL Server syntax
CREATE TABLE Publishers
(
  Id INTEGER NOT NULL IDENTITY,
  Publisher VARCHAR(255),
  PRIMARY KEY (Id)
)
;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy