Is there any way to use a column name with spaces in it in cfoutput?
An example sql statment would be:
SELECT [first name]
FROM myTable
I then want to output the values using something like #myQuery.[first name]# but cold fusion isn't accepting this.
I know you can use column aliases, but I'm working on a table with 70 columns and I'd rather do a SELECT * than have to specifiy an alias in every query.
An example sql statment would be:
SELECT [first name]
FROM myTable
I then want to output the values using something like #myQuery.[first name]# but cold fusion isn't accepting this.
I know you can use column aliases, but I'm working on a table with 70 columns and I'd rather do a SELECT * than have to specifiy an alias in every query.