SQL Alias Explained

The SQL alias is a nice little feature of SQL that allows you to write more concise code and create column names when no column name exists.

There are two SQL alias types; column aliases, and table aliases. In this article, I provide an overview of both.

Read more

12 Commonly Used SQL Operators

In SQL, an operator is a special character or keyword specifying an action that is performed on one or more expressions.

SQL operators are an integral part of SQL, and they enable us to write queries that return relevant results.

In this article, I present 12 of the most commonly used SQL operators when writing SQL queries.

Read more