SQLBeginer
Technical User
I have the following table:
ID ITEM1 ITEM2 ITEM3 ITEM4
1 222 333
2 111 333
3 111 444
I need to create another table to be something like this:
ID ITEM1 ITEM2
1 222 333
2 111 333
3 111 444
How can I do this?
Please help!
ID ITEM1 ITEM2 ITEM3 ITEM4
1 222 333
2 111 333
3 111 444
I need to create another table to be something like this:
ID ITEM1 ITEM2
1 222 333
2 111 333
3 111 444
How can I do this?
Please help!