Use a checkmark as an column alias in SQL Server 2008 R2 -


i have requirement believe should simple enough, not finding right answer to. how use checkmark column alias in sql server 2008 r2?

i've tried using char(251) setting value , trying assign value column alias, no joy on one.

i've tried using char(251) (and know that's more of square root mark, not sure of checkmark ascii value if there one. believe unicode value?) directly again no joy. should simple, i'm not finding it.

thanks.

you cannot use expressions identifiers in sql server (or other sql database matter). can, however, use unicode characters in identifiers, copy , paste desired character:

select 'yes' "☑︎"; 

or even

select 'blah' "😀"; 

having said that, should not doing -- presentation not task database engine; should implemented in client application.


Comments

Popular posts from this blog

dns - How To Use Custom Nameserver On Free Cloudflare? -

python - Pygame screen.blit not working -

c# - Web API response xml language -