Sep 8, 2011 #1 Ktx7ca IS-IT--Management Joined Apr 5, 2008 Messages 88 Location CA OH the front ends are running on access 2003 and 2010.
Sep 8, 2011 #2 vbajock Programmer Joined Jun 8, 2001 Messages 1,921 Location US http://bytes.com/topic/mysql/answers/652076-how-create-identity-column-mysql Upvote 0 Downvote
Sep 8, 2011 #3 Andrzejek Programmer Joined Jan 10, 2006 Messages 8,578 Location US best way to create my own auto number code Click to expand... I do it something like this: Code: INSERT INTO tblMyTable([blue]MyAutoNo[/blue], ABC, XYZ, ...) VALUES([blue](SELECT MAX(MyAutoNo) + 1 FROM tblMyTable)[/blue], 'AbcD', 123, ...) Have fun. ---- Andy Upvote 0 Downvote
best way to create my own auto number code Click to expand... I do it something like this: Code: INSERT INTO tblMyTable([blue]MyAutoNo[/blue], ABC, XYZ, ...) VALUES([blue](SELECT MAX(MyAutoNo) + 1 FROM tblMyTable)[/blue], 'AbcD', 123, ...) Have fun. ---- Andy