I want to produce an alphabetized list of names produced by adding together two columns of names, columnA, and columnB.
I have tried this:
<cfquery name="listAuthors" datasource="hhLibrary">
SELECT title, (a1_Fname + a2_Fname) AS ColumnA, (a1_Lname + a2_Lname) AS ColumnB
FROM books
WHERE ColumnB LIKE '#firstletter#%'
ORDER BY ColumnB
</cfquery>
this is the error code: Too few parameters. Expected 1.
any help greatly appreciated.
oregonHoney