wellster34
Programmer
Hi,
Is it possible to concatenate two columns from a SELECT query into 1? I perform the following SELECT statement and provide the results into a Comma Separated File (CSV)
SELECT Eemast.empnum, Eemast.fname, Eemast.lname;
FROM Eemast;
WHERE Eemast.empstatus == "A" INTO CURSOR hrweb
I want to concatenate Eemast.fname, Eemast.lname into one column. Right now, the query shows the data as follows:
"000000","JOHN","DOE"
Is it possible to have it returned as:
"000000","JOHN DOE"
Does anyone know if this is possible or not?
Thanks for your time.
Is it possible to concatenate two columns from a SELECT query into 1? I perform the following SELECT statement and provide the results into a Comma Separated File (CSV)
SELECT Eemast.empnum, Eemast.fname, Eemast.lname;
FROM Eemast;
WHERE Eemast.empstatus == "A" INTO CURSOR hrweb
I want to concatenate Eemast.fname, Eemast.lname into one column. Right now, the query shows the data as follows:
"000000","JOHN","DOE"
Is it possible to have it returned as:
"000000","JOHN DOE"
Does anyone know if this is possible or not?
Thanks for your time.