Gentlemen
I use MS SQL and I need create a table with auto increment column like
-
CREATE TABLE dbo.Tmp_Contents
(
AutoNo bigint NOT NULL IDENTITY (1, 1),
...
)
How I can describe identity in “native” liqui syntax?
Gentlemen
I use MS SQL and I need create a table with auto increment column like
How I can describe identity in “native” liqui syntax?
use the autoincrement=“true” attribute on column.
Like:
Nathan