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

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

The newest version!
-- Table with auto-incremented column, using sequences
-- with an unnamed primary key
CREATE TABLE Publishers
(
  Id INTEGER GENERATED BY DEFAULT AS SEQUENCE Publisher_Id_Seq PRIMARY KEY,
  Publisher VARCHAR(255)
)
;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy