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: create query

SQL MAX() for Beginners

Posted on December 7, 2020July 23, 2023 by Ian

In SQL, the MAX() function is an aggregate function that returns the maximum value in a given expression.

Below are some basic examples to demonstrate how it works.

Continue reading →
SQL aggregate functions, create query, sql, what is, window functions

SQL MIN() for Beginners

Posted on December 7, 2020July 23, 2023 by Ian

In SQL, the MIN() function is an aggregate function that returns the minimum value in a given expression.

Below are some basic examples to demonstrate how it works.

Continue reading →
SQL aggregate functions, create query, sql, what is, window functions

SQL COUNT() for Beginners

Posted on December 7, 2020July 23, 2023 by Ian

In SQL, the COUNT() function is an aggregate function that returns the number of items found in a group.

You can use COUNT() in multiple parts of a query. For example, you can use it in the SELECT list, or the HAVING clause when filtering groups.

Continue reading →
SQL aggregate functions, create query, sql, what is, window functions

SQL HAVING Clause for Beginners

Posted on December 6, 2020December 7, 2020 by Ian

In SQL, the HAVING clause can be used to specify a search condition for a group or an aggregate.

The HAVING clause is typically used with the GROUP BY clause. In cases where it’s not, there is an implicit single, aggregated group.

Continue reading →
SQL create query, sql, what is

SQL SELECT for Beginners

Posted on December 6, 2020September 17, 2024 by Ian

The SELECT statement is almost without doubt, the most commonly used statement in SQL.

The SELECT statement is used for retrieving data from the database. You can specify which rows you want returned, and which columns.

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

SQL GROUP BY Clause for Beginners

Posted on December 5, 2020December 7, 2020 by Ian

In SQL, the GROUP BY clause can be used to divide the results of a query into groups of rows.

This is usually done in order to perform one or more aggregations on each group.

Continue reading →
SQL create query, sql, what is

SQL ORDER BY Clause for Beginners

Posted on December 5, 2020December 5, 2020 by Ian

The ORDER BY clause is commonly used in SQL to sort the results of a query.

It allows you to specify the order in which the results are returned.

You can specify whether the results are sorted in ascending order or descending order. You can also specify multiple columns for sorting.

Continue reading →
SQL create query, sql, what is

SQL Greater Than (>) Operator for Beginners

Posted on December 3, 2020December 3, 2020 by Ian

In SQL, the greater than operator (>) compares two expressions and returns TRUE if the left operand has a value higher than the right operand; otherwise, it returns FALSE.

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

SQL Greater Than or Equal To (>=) Operator for Beginners

Posted on December 3, 2020December 3, 2020 by Ian

In SQL, the greater than or equal to operator (>=) compares two expressions and returns TRUE if the left operand has a value greater than or equal to the right operand; otherwise, it returns FALSE.

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

SQL Less Than or Equal To (<=) Operator for Beginners

Posted on December 2, 2020December 2, 2020 by Ian

In SQL, the less than or equal to operator (<=) compares two expressions and returns TRUE if the left operand has a value lower than or equal to the right operand; otherwise, the result is FALSE.

You can use it to determine whether a value is less than or equal to another value.

Continue reading →
SQL create query, operators, sql, what is
  • «
  • 1
  • …
  • 8
  • 9
  • 10
  • 11
  • 12
  • …
  • 14
  • »

About Database.Guide | Privacy Policy