Help understand difference in sql query

Posted by Anil Namde on Stack Overflow See other posts from Stack Overflow or by Anil Namde
Published on 2010-04-20T11:55:59Z Indexed on 2010/04/20 12:03 UTC
Read the original article Hit count: 225

Filed under:
|
Select user_name [User Name], first_name [First Name], last_name [Last Name] 
    Form tab_user
    ORDER  BY user_name

Select user_name [User Name], first_name [First Name], last_name [Last Name] 
    Form tab_user
    ORDER  BY User Name

Above are the two queries,

  1. Is there any difference because of the user_name used instead of User Name
  2. Is there something that should be taken care/worried when using something like this.

© Stack Overflow or respective owner

Related posts about sql-server

Related posts about sql