Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
I do it something like this:best way to create my own auto number code
INSERT INTO tblMyTable([blue]MyAutoNo[/blue], ABC, XYZ, ...)
VALUES([blue](SELECT MAX(MyAutoNo) + 1 FROM tblMyTable)[/blue], 'AbcD', 123, ...)