The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.
Hello,
In my base I have 2 tables: Users and Emails. They are linked together because one user can have multiple emails.
Users
Id|First name|Last name
1|John|Doe
2|Sam|Harison
Emails
Id|Address|User id
1|john.doe@gmail.com|1
2|sam.harison@gmail.com|2...
Hello,
I have an “id” column in my table. How can I generate sequential “id” after submitting the form?
|id|First name|Last name|
|1|John|Doe|
|2|Mary|Jane|
|3|Raplh|Smith|
I.e. after creating a new record “Tony Jones”, id=4 should be added automatic...