Hello,
I have a table named Table01 with three fields
"AN" "DESCRIPTION" "QTY"
1 DESC01 2
2 DESC02 1
3 DESC02 4
I want to make a routine for creating a new table with four fields as below
"NAN" "AN" "DESCRIPTION" "QTY"
1 1 DESC01 1
2 1 DESC01 1
3 2 DESC02 1
4 3 DESC03 1
5 3 DESC03 1
6 3 DESC03 1
7 3 DESC03 1
The field "QTY" must be 1 for each record.
I have a table named Table01 with three fields
"AN" "DESCRIPTION" "QTY"
1 DESC01 2
2 DESC02 1
3 DESC02 4
I want to make a routine for creating a new table with four fields as below
"NAN" "AN" "DESCRIPTION" "QTY"
1 1 DESC01 1
2 1 DESC01 1
3 2 DESC02 1
4 3 DESC03 1
5 3 DESC03 1
6 3 DESC03 1
7 3 DESC03 1
The field "QTY" must be 1 for each record.