Thursday, July 29, 2010

Select Statement in SQL

Select Statement - used to select data from a database.

syntax:
       to select all record in database.
           Select * from tableName 
     
      to select column in the database.
          Select Column1, Column2, Column3......
          from tableName

No comments:

Post a Comment