Ciao!
I have to store an unique value for every record in my customer table.
I used this escamotage:
Is there a better way to do that?
Grazie
GM
That’s 1 way
Another would be hitting an api to generate a uuid and saving that to the record
https://www.uuidtools.com/api/generate/timestamp-first
Thanks.
No matter about the structure…
But, in your example, how we can assure the univocity of the “account number”?
A simple method would be to initialize a variable to 1 or 10000 or something like that and add 1 to it before you create each row. And then use that as the unique record ID.
Best to use Supabase
Are you creating rows in a local table or a cloud environment? Most DBs have this value available on records already.
Just was wondering about my question there
Google sheets…