Subject | There is a verb to supply identity columns? |
---|---|
Author | hamacker |
Post date | 2017-01-11T11:00:14Z |
Hi, All.
Colums identity in FB3, I love it!
But there is one thing missing.
I would like to know, if exists a verb to supply identity value to not assume a literal value. Ex:
create table test (
id integer generated by default as identity primary key,
name varchar(15) );
insert into test (id, name) values (default, 'test#1'); // default, any,... is there a verb to suppy identity column?
I know that I need to hidden fields identity, but it exists a possibility to keep identity fields in sql for documentation, I will prefer this way.
If not, Ok. but I will send a ticket request. We never know, if I am alone in universe.
thx4all.