Tuesday, June 13, 2023

SQL SELECT Statement

  • The SELECT statement is used to select data from a database.
  • The data returned is stored in a result table, called the result-set.
  • SELECT Syntax

  • SELECT column1, column2, ...
  • FROM table_name;
  • No comments:

    Post a Comment

    LearnSQL

      SQL UPDATE Summary : in this tutorial, you will learn how to use the SQL  UPDATE  statement to modify data of the existing rows a table. I...