I have an SQL database and have a vb6 application. Here is the situation: We have students that are assigned IDs according to groups. The ID is comprised of 5 numbers. The first two numbers represent the Group. Then the next 3 numbers represent the Student ID. The Student ID increments by 1 every time there is a new student registered.
For example, If they belong to group A, then they will be assigned 23xxx.
Group B, then 24xxx
So if a 3 new students come to group A, then it would be 23001, 23002, 23003
Do I have the ability to use Autonumber in SQL or do something in VB6, to make this happen
If you are using MS SQL Server and are referring to the IDENTITY attribute then no, you cannot use it. You will have to resort to doing MAX(StudentID) + 1 to get the next one and concatentate that to the Group.
If on the other hand you are using MS Access and are referring to the AutoNumber column then the answer is the same, but then you should not have posted in the MS SQL Server Zone. :)