If I have the SQL query:
select
project.Employee,
project.HoursQuantity,
convert(varchar(10), project.EntryDate, 120)
from db.Project as project
It will return ProjectHours and HoursQuantity with the proper column name, but will return EntryDate as (No column name).
How do I fix this or rename the column so that a title will show up on the table returned to the user?
I thought the data would remain in the same column, but I guess it moves to a new column. I tried aliasing it and a couple of other things but it hasn't worked.