Author: Rabecca Fatima
-
SQLSQL Data Types
SQL Data Types are an important component of the attributes present in the tables, as well as the queries used…
March 12, 2023
-
SQLSQL: ALTER command
The ALTER command is a DDL command that can be used to change the structure of existing tables in the…
March 14, 2023
-
SQLSQL: Truncate, Drop, Rename Query
The various DDL commands that are used to redefine the tables will be covered in this tutorial. Truncate Query: TRUNCATE…
March 15, 2023
-
SQLSQL: INSERT Query
Insert is a commonly used command in the Structured Query Language (SQL) data manipulation language (DML) used by SQL Server…
March 16, 2023
-
SQLSQL: UPDATE Query
What is an UPDATE QUERY? The SQL UPDATE statement is used to modify the data in tables’ records. A condition…
March 17, 2023
-
SQLSQL: DELETE Query
What is Delete Query? In SQL, the DELETE Query removes existing records from a table. Depending on the condition specified…
March 22, 2023
-
SQLSQL: TCL Commands
What is TCL? Transactional control commands(TCL) can only be used with DML commands like INSERT, UPDATE, and DELETE. They cannot…
March 22, 2023
-
SQLDCL Commands: GRANT and REVOKE
What is DCL? Data Control Language is known as DCL in SQL. By creating users and granting or removing privileges…
March 23, 2023
-
SQLSQL: WHERE clause
When retrieving data from a single table or by joining data from multiple tables, a condition is specified using the…
March 24, 2023
-
SQLSQL: LIKE clause
In SQL to filter data based on a specific pattern, the LIKE clause is used in the WHERE condition. It…
March 25, 2023
-
SQLSQL: ORDER BY Clause
What is the ORDER BY Clause? In the SELECT query, the ORDER BY clause can be used to sort the…
March 26, 2023
-
SQLSQL: Group By Clause
The SQL Group By statement is used to organize similar data into groups. The data is further organized using an…
March 28, 2023