Category Archives: SQL Operators

This category is focused on SQL operators thanks to which we perform a certain task in an SQL script. E.g. we use the UNION operator to combine 2 sql selections or, for example, use LIKE to search for some text strings in another text, etc.

Don’t miss out from category:

SQL UNION Operator – Unification of Sets with Example

UNION operator makes it possible to connect 2 results of query and remove all existing duplicities in them. In other words, operator actually performs DISTINCT (like SELECT DISTINCT) in final unification of records. SQL UNION Syntax SELECT Column FROM dbo.Table WHERE Condition      UNION SELECT Column FROM dbo.Table WHERE Condition; Syntax is same as… Read More »

SQL BETWEEN Operator – Defining Range in a Condition with Examples

This operator is used in SQL whenever it is needed to prove if certain value belongs to some range. This operator is used together with “AND” command which defines given range. Operator can be used in most of the clauses but is most common in WHERE for defining limiting requirement. SQL BETWEEN Operator Syntax SELECT… Read More »