Database.Guide

Skip to content

Beginners

  • What is a Database?
  • Database Tutorial

SQL

  • SQL Tutorial
  • SQL Reference
  • SQL Joins Tutorial
  • SQL Transactions Tutorial
  • Basic SQL Queries

Categories

  • Azure SQL Edge (17)
  • Database Concepts (99)
  • Database Tools (72)
  • DBMS (9)
  • DuckDB (153)
  • MariaDB (424)
  • Microsoft Access (17)
  • MongoDB (265)
  • MySQL (602)
  • NoSQL (8)
  • Oracle (301)
  • PostgreSQL (480)
  • Redis (210)
  • SQL (697)
  • SQL Server (1,170)
  • SQLite (299)

Tag: what is

SQL IN Operator for Beginners

Posted on November 30, 2020September 17, 2024 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).

Continue reading →
SQL create query, operators, sql, subqueries, what is

SQL LIKE Operator for Beginners

Posted on November 29, 2020April 13, 2021 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.

Continue reading →
SQL operators, sql, what is

SQL CREATE TABLE … AS SELECT Statement

Posted on November 29, 2020October 30, 2022 by Ian

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

Continue reading →
SQL create table, how to, sql, what is

SQL SELECT INTO Statement

Posted on November 29, 2020November 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).

Continue reading →
SQL create table, how to, sql, what is

SQL INSERT INTO… SELECT Examples

Posted on November 28, 2020November 29, 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).

Continue reading →
SQL create query, create table, how to, sql, what is

SQL Self Join

Posted on November 24, 2020July 20, 2024 by Ian

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

Continue reading →
SQL create query, how to, joins, sql, what is

SQL Natural Join

Posted on November 24, 2020July 20, 2024 by Ian

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

Continue reading →
SQL create query, how to, joins, sql, what is

SQL Full Join

Posted on November 24, 2020July 20, 2024 by Ian

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

Continue reading →
SQL create query, how to, joins, sql, what is

SQL Cross Join

Posted on November 24, 2020July 20, 2024 by Ian

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

Continue reading →
SQL create query, how to, joins, sql, what is

SQL Left Join

Posted on November 24, 2020July 20, 2024 by Ian

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

Continue reading →
SQL create query, how to, joins, sql, what is
  • «
  • 1
  • …
  • 131
  • 132
  • 133
  • 134
  • 135
  • …
  • 151
  • »

About Database.Guide | Privacy Policy