Hi. Is there any built in SQL syntax ability to make the string in query uppercase???
Printable View
Hi. Is there any built in SQL syntax ability to make the string in query uppercase???
sure :)
in SQL Server : use the UPPER() function
in Access : use UCaseCode:SELECT UPPER(lastname) from employees
Code:SELECT UCase(lastname) from employees
right