Answered
CANCAT DB function
Hi,
I are trying to create a display value of FullName using the CANCAT function and I am getting the following error:
'CONCAT' is not recognized as a function or procedure.
The following is my code:
cfquery name="qArtisits" datasource="cfartgallery">
SELECT ARTISTID, FIRSTNAME, LASTNAME,
CONCAT( FIRSTNAME, ' ', LASTNAME ) AS FULLNAME
FROM APP.ARTISTS
ORDER BY LASTNAME ASC
</cfquery>
Using MySql and CF8
Any ideas!
I are trying to create a display value of FullName using the CANCAT function and I am getting the following error:
'CONCAT' is not recognized as a function or procedure.
The following is my code:
cfquery name="qArtisits" datasource="cfartgallery">
SELECT ARTISTID, FIRSTNAME, LASTNAME,
CONCAT( FIRSTNAME, ' ', LASTNAME ) AS FULLNAME
FROM APP.ARTISTS
ORDER BY LASTNAME ASC
</cfquery>
Using MySql and CF8
Any ideas!
