CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Jun 2003
    Location
    Azerbaijan
    Posts
    74

    uppercase in SQL???

    Hi. Is there any built in SQL syntax ability to make the string in query uppercase???

  2. #2
    Join Date
    Apr 2002
    Location
    Egypt
    Posts
    2,210
    sure
    in SQL Server : use the UPPER() function
    Code:
    SELECT UPPER(lastname) from employees
    in Access : use UCase
    Code:
    SELECT UCase(lastname) from employees

  3. #3
    Join Date
    Mar 2004
    Posts
    3

    right

    right

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured