Write Your First SQL Statement

Write Your First SQL Statement

We will be using MS SQL Management Studio during our tutorials. Using a diffent SQL editor will not make any difference.
Please follow the below steps to produce your first SQL statement

  • Open your editor
  • Open query window
  • Select your database you would like to execute your SQL statement on
  • Pick one of the table name from your database
  • Type "Select * from TableName"  . Replace the 'TableName' word with the table name you picked.
  • Execute your query (It is F5 on most of the SQL editors)
  • Here we go your SQL Statement worked