Skip to content

Database.Guide

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

SQL INSERT INTO… SELECT Examples

November 29, 2020November 28, 2020 by Ian

The SQL INSERT statement is most commonly used to insert individual rows into a table.

But you can also insert the results of a query into a table. This means that you can insert multiple rows at once (as long as they’re returned by the query).

Read more

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

SQL Self Join

July 20, 2024November 24, 2020 by Ian

This article provides an overview of the self join in SQL, as well as a basic example.

Read more

Categories SQL Tags create query, how to, joins, sql, what is

SQL Natural Join

July 20, 2024November 24, 2020 by Ian

This article provides an overview of the natural join in SQL, as well as some basic examples.

Read more

Categories SQL Tags create query, how to, joins, sql, what is

SQL Full Join

July 20, 2024November 24, 2020 by Ian

This article provides an overview of the FULL JOIN in SQL, as well as some basic examples.

Read more

Categories SQL Tags create query, how to, joins, sql, what is

SQL Cross Join

July 20, 2024November 24, 2020 by Ian

This article provides an overview of the CROSS JOIN in SQL, as well as some basic examples.

Read more

Categories SQL Tags create query, how to, joins, sql, what is

SQL Left Join

July 20, 2024November 24, 2020 by Ian

This article provides an overview of the LEFT JOIN in SQL, as well as some basic examples.

Read more

Categories SQL Tags create query, how to, joins, sql, what is

SQL Inner Join

July 20, 2024November 23, 2020 by Ian

This article provides an overview of the INNER JOIN in SQL, as well as some basic examples.

Read more

Categories SQL Tags create query, how to, joins, sql, what is
Older posts
Newer posts
← Previous Page1 … Page147 Page148 Page149 … Page166 Next →

About | Privacy Policy

© 2026 Database.Guide • All rights reserved