Chapter One
Chapter One
2023 G.C
NAAF TA’EERA
Your
text
Your text he£Ԛre
[Author name]
[Company name]
2023 G.C
|Page
NAAF TA’EERA
Contents
Introduction to SQL Commands.................................................................................................2
1.1 Structure.......................................................................................................................2
1.1.1 Tables........................................................................................................................2
CHAPTER TWO........................................................................................................................3
i|Page
NAAF TA’EERA
Chapter one
1|Page
NAAF TA’EERA
In addition to that SELECT is also another command used to specify the required data from
the other. So that it is mostly known by calling command.
Syntax;
SELECT * FROM table name;
Or
SELECT column1, coulmn2 …
FROM table name;
Or
SELECT * FROM table name LIMIT row_number;
SELECT DISTINICT also used to return only distinct or different values.
Syntax;
SELECT DISTNICT column1, column2, column3…..
FROM table name;
UPDATE statement: Used to modify the existing records in a table.
Syntax;
UPDATE table name
SET column1=value1, column2=value2…
WHERE condition;
CHAPTER TWO
2|Page
NAAF TA’EERA
12 June 2023
3|Page