Jul 30, 2003 #1 lah3233 MIS Jul 15, 2003 33 US Does anyone know how to solve this?? I would like to run the following SQL statement SELECT field1, ' - ', field2 FROM TableName ORDER BY field2 and get the result:: field1 - field2 Can anybody help??
Does anyone know how to solve this?? I would like to run the following SQL statement SELECT field1, ' - ', field2 FROM TableName ORDER BY field2 and get the result:: field1 - field2 Can anybody help??
Jul 30, 2003 #2 mkrausnick Programmer Apr 2, 2002 766 US If the field1 and field2 are text, and you want a single column output, then select field1 + ' - ' + field2 Mike Krausnick Dublin, California Upvote 0 Downvote
If the field1 and field2 are text, and you want a single column output, then select field1 + ' - ' + field2 Mike Krausnick Dublin, California