Auto Increment nvarchar value in vb.net
问题 I'm having a UserID field in my table and I need to get that value in my app and whenever I would like to add a new record it should increment by value '1' . So this is how I'm trying to get the last ID enetered from my table. For Example I'm having a value as "A000" and I need to increment that value by '1' so that it should become "A001" and so on..and after 'A999' as pointed out by PinnyM' it should become 'A1000' . I don't want to write any stored procedures or anyother way from database