Here's my sql code:
------------------------------
SELECT
concat(firstname, ' ', (LEFT (lastname,1))) as Name,
attending_banquet as Attending_Banquet,
attending_family_night as Family_Night
FROM `kamc3_chronoforms_data_RSVP-20-Yr-Anniversary`
WHERE attending_family_night = "Yes Attending Family Night" OR attending_banquet = "YES"
ORDER BY firstname ASC
----------------------------------
I wanted the table headings to appear without the underscore when report is generated and an csv export is done, but when I code:
attending_banquet as "Attending Banquet",
attending_family_night as Family_Night
The double quotes are appearing and I tried using single quotes then, single quotes appearing. Which I don't want either. (see attached.)