To get a specific number of records TOP clause is used. It is helpful when the data is large because...
Continue reading...SQL
SQL NULL VALUES
To check weather there is a null value or not, we use IS NULL or IS NOT NULL operators. IS NULL...
Continue reading...SQL DELETE
The DELETE statement is used to delete the existing record/records in a table. Syntax: DELETE FROM table_name WHERE condition; DEMO...
Continue reading...SQL UPDATE
The UPDATE statement is used to modify/update the existing record in table. Syntax: UPDATE table_name SET column1 = value, …....
Continue reading...SQL HAVING
To filter the records just like WHERE clause, HAVING clause is used. HAVING clause is used with aggregate functions because with...
Continue reading...SQL GROUP BY
Select statement is used to fetch data from a table. Mainly the data is fetched by two ways using select...
Continue reading...SQL ORDER BY
ORDER BY keyword is used to order the record in ascending or descending order. To order the record in in...
Continue reading...SQL WHERE
Where clause is used to apply condition on to filter the records. It is used to get the desired record....
Continue reading...SQL SELECT
Select statement is used to fetch data from a table. Mainly the data is fetched by two ways using select...
Continue reading...INSERT INTO
INSERT INTO statement is used to add data into the table. Data in the table can be inserted into two...
Continue reading...