Simple SQL Select Update

Hoping someone can assist... I am not a sql person but need to update this line of code because I cannot get certain letters to capitalize in my statement. Code:

select '0' code, upper('-- N') + 'ot willing to attend another TK Berkley School' descript union
select '1' code, upper('-- Y') + 'es, I am willing to attend another TK Berkley School' descript union
select '2' code, upper('I') + ' am not requesting a TK program'

This is the results displayed on screen:
Snip

I am hoping there is a way to make certain letters caps like:

--Yes, I will attend an other TK Berkley school

Is there an easy way to do this? Thanks in advance of your time.

Jay

That is just dummy data or is that the actual data used to populate the drop down? As is it should work. If it is not it might the applicationayee that is lower casing it

That is a select statement that populates the drop down. Without the upper() statement, the entire thing is lowercase so the application must be doing that, but I can override it... just wondering if there is a way to use the upper() in the middle of the string.

You could just add upper('TK') but that seems redundant. Sugar('sugar')

Also what if tomorrow your application is used by non English speakers