Sep 15, 2009 #1 jiminy Technical User Jan 26, 2002 30 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
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
Sep 15, 2009 #2 sxschech Technical User Jul 11, 2002 1,033 US You can use & to concatenate the fields together. Code: Select Field1, Field2, Field1&Field2 AS Field3 From table; Upvote 0 Downvote
You can use & to concatenate the fields together. Code: Select Field1, Field2, Field1&Field2 AS Field3 From table;