SELECT statement combining field data with text string

fboehlandt

Registered User.
Local time
Today, 20:40
Joined
Sep 5, 2008
Messages
90
Hi everyone,
I have the following SELECT statement below:

SELECT Performance.ID As Code

The entries for the Field 'Code' look something like this:

6473
4596
304
21
340

In the query I would like this to be changed to:

6473 mutual
4596 mutual
304 mutual
21 mutual
340 mutual

What changes do I have to make to the SELECT statement. Thanks in advance
 
Change it to
Code:
Select Performance.ID & " mutual" AS Code
 
Thanks for the quick reply
 
No problemos, have a good one!
 

Users who are viewing this thread

Back
Top Bottom