Enum IdentityPropertyFormatKind
pub enum IdentityPropertyFormatKind {
FunctionCall(IdentityParameters),
StartAndIncrement(IdentityParameters),
}Expand description
A format of parameters of identity column.
It is Snowflake specific. Syntax
(seed , increment) | START num INCREMENT numMS SQL Server uses one way of representing these parameters. Syntax
A parameters of identity column declared like parameters of function call Example:
A parameters of identity column declared with keywords START and INCREMENT
Example: