Hi
Need to get a script to create only the structure of a table including the two following fields :
field1 (int) and field2 (varchar)
Field1 will be incremented based on the field2 value it means when we will insert the 8 values of field2 we will get this result below
field1 | field2 |
1 | A |
2 | A |
3 | A |
1 | B |
2 | B |
3 | B |
4 | A |
5 | A |
4 | B |
Thx for your help