I need assistance with a SELECT query. The problem I have is that I need to make two columns out of one column; the 'invtid' column.
What I mean is that under the invtid column we have the same inventory item twice. One of the inventory item has the suffix (fi) which means the item is for inventory.
Here is an example of what the data currently looks like:
invtid descr location
123ABC Computer 1KY
123ABC (fi) Computer 1KY
879HIJ Typewriter 1SC
456EFG Monitor 1SC
456EFG (fi) Monitor 1SC
Here is an example of what I want the data to look like after the query which adds the new column for the inventory items with the (fi) suffix:
invtid invtid_fi descr location
123ABC 123ABC (fi) Computer 1KY
879HIJ Typewriter 1SC
456EFG 456EFG (fi) Monitor 1SC
Thanks in advance,
elmorro
What I mean is that under the invtid column we have the same inventory item twice. One of the inventory item has the suffix (fi) which means the item is for inventory.
Here is an example of what the data currently looks like:
invtid descr location
123ABC Computer 1KY
123ABC (fi) Computer 1KY
879HIJ Typewriter 1SC
456EFG Monitor 1SC
456EFG (fi) Monitor 1SC
Here is an example of what I want the data to look like after the query which adds the new column for the inventory items with the (fi) suffix:
invtid invtid_fi descr location
123ABC 123ABC (fi) Computer 1KY
879HIJ Typewriter 1SC
456EFG 456EFG (fi) Monitor 1SC
Thanks in advance,
elmorro