SQL syntax.pptx

adityakumawat625 46 views 5 slides Oct 16, 2023
Slide 1
Slide 1 of 5
Slide 1
1
Slide 2
2
Slide 3
3
Slide 4
4
Slide 5
5

About This Presentation

sql syntax


Slide Content

SQL syntax

SQL Statements Most of the actions you need to perform on a database are done with SQL statements. SQL statements consists of keywords that are easy to understand. Example:- Get your own SQL Server Select/retrieve all records from the Customers table: SELECT  *  FROM  Customers;

Points to remember:- SQL keywords are NOT case sensitive:  select  is the same as  SELECT Semicolon ( ; ) is the standard way to separate each SQL statement in database systems that allow more than one SQL statement to be executed at same time.

Most important SQL commands