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 (128)
  • MariaDB (424)
  • Microsoft Access (17)
  • MongoDB (265)
  • MySQL (602)
  • NoSQL (8)
  • Oracle (301)
  • PostgreSQL (480)
  • Redis (210)
  • SQL (697)
  • SQL Server (1,169)
  • SQLite (298)

Tag: sql

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 Joins Tutorial

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

A SQL join is where you run a query that joins multiple tables.

This SQL joins tutorial presents basic examples of SQL joins, as well as an introduction to the various join types.

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

Basic SQL Queries

Posted on November 26, 2020November 26, 2020 by Ian

This article contains examples of basic SQL queries that beginners can use to retrieve data from their databases.

Continue reading →
SQL create query, how to, sql

SQL DELETE for Beginners

Posted on November 26, 2020November 26, 2020 by Ian

This article contains basic SQL DELETE statements that beginners can use to delete data from their database tables.

Continue reading →
SQL how to, sql

SQL UPDATE for Beginners

Posted on November 26, 2020November 26, 2020 by Ian

This article contains basic SQL UPDATE statements that beginners can use to update data in their database tables.

Continue reading →
SQL how to, sql

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
  • «
  • 1
  • …
  • 3
  • 4
  • 5
  • 6
  • 7
  • …
  • 11
  • »

About Database.Guide | Privacy Policy