TipsMake
Newest

SQL Server - Page 6

IN conditions in SQL Server
25 May 2019

IN conditions in SQL Server

The IN condition is used in SQL Server (Transact-SQL) to minimize the need to use too many OR conditions.

Conditions NOT in SQL Server
25 May 2019

Conditions NOT in SQL Server

The NOT condition in SQL Server (Transact-Server) is also called the NOT operator, which is used to negate conditions in SELECT, INSERT, UPDATE, and DELETE statements.

ALIAS in SQL Server
25 May 2019

ALIAS in SQL Server

ALIASES in SQL Server is used to create temporary names (called aliases) for columns or tables.

JOIN in SQL Server
25 May 2019

JOIN in SQL Server

JOIN is used to retrieve data from multiple tables, occurring when two or more tables are connected together in an SQL statement.

UPDATE command in SQL Server
25 May 2019

UPDATE command in SQL Server

In SQL Server (Transact-SQL) the UPDATE command is used to update the existing records on a table in a SQL Server database.

DELETE command in SQL Server
25 May 2019

DELETE command in SQL Server

The DELETE statement in SQL Server (Transact-SQL) is used to delete one or more records from a table in SQL Server.

EXISTS condition in SQL Server
25 May 2019

EXISTS condition in SQL Server

In SQL Server (Transact-SQL) condition EXISTS is correct to associate with the internal query (subquery).

GROUP BY clause in SQL Server
25 May 2019

GROUP BY clause in SQL Server

The GROUP BY clause in SQL Server (Transact-SQL) is used in the SELECT statement to retrieve data from multiple records and result groups into 1 or more columns.

HAVING clause in SQL Server
25 May 2019

HAVING clause in SQL Server

The HAVING clause is used in conjunction with the GROUP BY clause in SQL Server (Transact-SQL) to limit the group of returned rows, only when the condition is met is TRUE.