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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

combining field contents

Status
Not open for further replies.

jiminy

Technical User
Jan 26, 2002
30
0
0
US
Is there a way to combine 2 text fields in a table to make a third in the same table?
Example for one record:
Field1 = 1
Field2 = a
Field3 = 1a
 
You can use & to concatenate the fields together.

Code:
Select Field1, Field2, Field1&Field2 AS Field3
From table;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top