Created
December 21, 2010 11:58
-
-
Save mariuz/749844 to your computer and use it in GitHub Desktop.
Firebird does have support for identity http://firebird.svn.sourceforge.net/viewvc/firebird/firebird/trunk/doc/sql.extensions/README.identity_columns.txt?revision=51203&view=markup
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 TABLE bar | |
( | |
baz integer GENERATED by default AS IDENTITY, | |
foo varchar(255) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment