SQL QUERIES
The SQL SELECT Statement
The SELECT statement is used to select data from a database.The result is stored in a result table, called the result-set.
SQL SELECT Syntax
FROM table_name

An SQL SELECT Example
The "Persons" table:P_Id | LastName | FirstName | Address | City |
---|---|---|---|---|
1 | Hansen | Oya | Timoteivn 10 | Sandnes |
2 | Svendson | mnve | Borgvn 23 | Sandnes |
3 | Pettersen | reri | Storgt 20 | Stavanger |
We use the following SELECT statement:
The SQL SELECT DISTINCT Statement
In a table, some of the columns may contain duplicate values. This is not a problem, however, sometimes you will want to list only the different (distinct) values in a table.The DISTINCT keyword can be used to return only distinct (different) values.
SQL SELECT DISTINCT Syntax
FROM table_name
The WHERE Clause
The WHERE clause is used to extract only those records that fulfill a specified criterion.SQL WHERE Syntax
FROM table_name
WHERE column_name operator value
SQL UPDATE Syntax
SET column1=value, column2=value2,...
WHERE some_column=some_value
The AND & OR Operators
The AND operator displays a record if both the first condition and the second condition is true.The OR operator displays a record if either the first condition or the second condition is true.
SELECT * FROM Persons
WHERE FirstName='ak'
OR FirstName='nk'
LastName='kumar'
AND (FirstName='ak' OR FirstName='nk')
The ORDER BY Keyword
The ORDER BY keyword is used to sort the result-set by a specified column.The ORDER BY keyword sort the records in ascending order by default.
If you want to sort the records in a descending order, you can use the DESC keyword.
SQL ORDER BY Syntax
FROM table_name
ORDER BY column_name(s) ASC|DESC
SQL INSERT INTO Syntax
It is possible to write the INSERT INTO statement in two forms.The first form doesn't specify the column names where the data will be inserted, only their values:
VALUES (value1, value2, value3,...)
VALUES (value1, value2, value3,...)
SQL DELETE Syntax
WHERE some_column=some_value
No comments:
Post a Comment