I'm using SQL Server and need to keep an accounting number with reference to the tenant id.
I cannot use the auto increment id because it is sequentially increments and has gaps in the client applications.
I couldn't use computed columns as aggregate functions like Max
is not allowed
What would be the best approach for this?
You also can process when insert data, For example:
If you want to use trigger,This is a sample, In ths sample, even you specify a PaymentId when inserting data, this trigger also recalculating the PaymentId