Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Combine multiple fields into a field

Status
Not open for further replies.

gpling

IS-IT--Management
May 28, 2002
2
SG
I am trying to combine multiple fields into a field.
The table that I have at present consist of a product code, quantity and its unit.
I want to combine all 3 fields into one field.

E.g
Product Code: AB12
Quantity: 1000
Unit: KG
The combined Field should look like this: AB121000KG

Does anyone know how to implement that?
Thanks in advanced.
 
You can concatenate in a select statement if that is what you mean

Select (Product Code + Quantity + Unit) as newfield
From table
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top