sql - Upper case in ALIAS for column Name not working -


in following select statement firstname , middlename alias not appear. want column header in uppercase.

select  dbo.employee.title sal,         dbo.employee.firstname firstname,         dbo.employee.middlename middlename dbo.employee  

i have tried , works fine me. however, here suggested change sql may assist.

select title [sal],        firstname [firstname],        middlename [middlename] dbo.employee  

Comments

Popular posts from this blog

python - Subclassed QStyledItemDelegate ignores Stylesheet -

java - HttpClient 3.1 Connection pooling vs HttpClient 4.3.2 -

SQL: Divide the sum of values in one table with the count of rows in another -