Created
November 2, 2012 18:58
-
-
Save sdoro/4003626 to your computer and use it in GitHub Desktop.
PostgreSQL Auto Increment
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE SEQUENCE mgr_id_seq; | |
CREATE SEQUENCE; | |
CREATE TABLE managers( | |
mgr_id INTEGER PRIMARY KEY DEFAULT NEXTVAL('mgr_id_seq'), | |
mgr_name VARCHAR(50), | |
mgr_email VARCHAR(50) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment