Unfortunately you are starting from a fundamentally flawed table design which does what is known as
'encoding data as column headings'. A fundamental principle of the database relational model is the Information Principle (Codd's Rule #1). This requires that all data be stored as values
at column positions in rows in tables, and in no other way.
With your current design what you have is a set of columns, each of which represents a value of some attribute type of whatever entity type the table is modelling. The correct design would be to decompose the table into two related tables in which each attribute
is represented by a value in a single column in a separate row in a related table. This table would model a many-to-many relationship type between the entity type modelled by the current table and a table of different categories (date, state, city etc), so
diagrammatically the model would be like this:
Entities----<EntityCategories>----Categories
NB: do not confuse 'entity type' and 'entity'. The former is modelled by a table, the latter by a row in the table.
As you have used names for your columns which more or less correspond to the values, the process of recasting the data into a correctly structured set of tables can be quite easily automated, and you'll find an example as
UnencodeColumns.zip in my public databases folder at:
https://skydrive.live.com/?cid=44CC60D7FEA42912&id=44CC60D7FEA42912!169
If you have difficulty opening the link copy its text (NB, not the link location) and paste it into your browser's address bar.
You can either amend the code in my demo to strip of the 'C_' from each value when inserting rows into the table, or remove the first two characters of each value subsequently with a simple 'update' query.
If you then want to return the values as a delimited string you can do so with a concatenation function such as Allen Brown's at:
http://allenbrowne.com/func-concat.html
You'll also find one using the highly efficient GetString method of the ADO recordset object in
Concat.zip in the same SkyDrive folder at the earlier link above.