Tutorials Hut

  • SQL Testing




  • SQL Select Statement

    SQL Select Statement used to select the data from database.

      • It is used to retrieve records from one or more tables in your SQL database
      • We can select all columns from a table or can select only particular column using select statement in SQL
      • The records retrieved are known as a result set.

    Syntax:

    SELECT expressions
    FROM tables
    [WHERE conditions]
    [ORDER BY expression [ ASC | DESC ]];

    Example:

    SELECT Statement for Employee Table.

     
     
     
     
     
     
     
     
     
    Recommended Articles:



  • SQL Testing

  • SQL Select Statement 2
    SQL Insert Statement 1













  • Leave a Reply

    Your email address will not be published. Required fields are marked *