Skip to content

Database.Guide

Ian

SQL Equals (=) Operator for Beginners

December 1, 2020December 1, 2020 by Ian

The equals operator (=) is probably the most commonly used operator in SQL. It compares the equality of two expressions. Even if you’ve only just begun your SQL journey, you’ll probably know this operator.

Read more

Categories SQL Tags create query, operators, sql, what is

SQL NOT Operator for Beginners

December 1, 2020 by Ian

In SQL, the NOT operator negates a Boolean input (it reverses the value of any Boolean expression). Therefore it returns TRUE when the expression is FALSE.

Read more

Categories SQL Tags create query, operators, sql, what is

SQL BETWEEN Operator for Beginners

December 1, 2020 by Ian

In SQL, the BETWEEN operator allows you to check for values that are within a given range.

The BETWEEN operator specifies a range to test, and it returns TRUE when the operand is within the range of comparisons.

Read more

Categories SQL Tags create query, operators, sql, what is

SQL AND Operator for Beginners

November 30, 2020 by Ian

In SQL, the AND operator allows you to check for multiple conditions when filtering your queries.

The AND operator combines two Boolean expressions and returns TRUE when both expressions are TRUE.

Read more

Categories SQL Tags create query, operators, sql, what is

SQL OR Operator for Beginners

November 30, 2020November 30, 2020 by Ian

In SQL, the OR operator allows you to use alternative conditions when filtering your queries.

The OR operator combines two conditions, and returns TRUE when either of the conditions is TRUE.

Read more

Categories SQL Tags create query, operators, sql, what is

SQL EXISTS Operator for Beginners

September 17, 2024November 30, 2020 by Ian

In SQL, the EXISTS operator specifies a subquery to test for the existence of rows. It returns TRUE when the subquery returns one or more rows.

A subquery is a query that is nested inside another query (or even another subquery)

This article contains some basic examples of the EXISTS operator.

Read more

Categories SQL Tags create query, operators, sql, subqueries, what is

SQL IN Operator for Beginners

September 17, 2024November 30, 2020 by Ian

In SQL, the IN operator allows you to filter your query results based a list of values.

You can also use it to match any value returned by a subquery (a subquery is a query that’s nested inside another query).

Read more

Categories SQL Tags create query, operators, sql, subqueries, what is

SQL LIKE Operator for Beginners

April 13, 2021November 29, 2020 by Ian

In SQL, the LIKE operator allows you to do pattern matching. It determines whether a specific character string matches a specified pattern.

A pattern can include regular characters and wildcard characters.

Read more

Categories SQL Tags operators, sql, what is

SQL CREATE TABLE … AS SELECT Statement

October 30, 2022November 29, 2020 by Ian

The SQL CREATE TABLE ... AS SELECT statement enables you to insert the results of a query into a new table.

Read more

Categories SQL Tags create table, how to, sql, what is

SQL SELECT INTO Statement

November 29, 2020 by Ian

The SQL SELECT INTO statement is a Sybase extension that can be used to insert the results of a query into a table (or a variable, depending on the DBMS).

Read more

Categories SQL Tags create table, how to, sql, what is
Older posts
Newer posts
← Previous Page1 … Page298 Page299 Page300 … Page423 Next →

About | Privacy Policy

© 2026 Database.Guide • All rights reserved