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

CONVERT() in SQL Server

Posted on December 17, 2021January 24, 2023 by Ian

In SQL Server, the CONVERT() function converts an expression of one data type to another.

Here’s a quick overview of the function with examples.

Continue reading →
SQL Server conversion functions, functions, t-sql, what is

3 Ways to Check a Column’s Data Type in PostgreSQL

Posted on December 17, 2021 by Ian

Here are three ways to get the data type of a given column in MariaDB.

Continue reading →
PostgreSQL data types, how to, psql

How CAST() Works in SQL Server

Posted on December 17, 2021December 18, 2021 by Ian

In SQL Server, the CAST() function converts an expression of one data type to another.

Here’s a quick overview of the function with examples.

Continue reading →
SQL Server conversion functions, functions, t-sql, what is

Data Type Precedence in SQL Server

Posted on December 16, 2021January 8, 2023 by Ian

Below is a list containing the SQL Server data types, in order of precedence.

Continue reading →
SQL Server convert, data types, t-sql

How to List all Stored Procedures in MariaDB

Posted on December 16, 2021 by Ian

In MariaDB, we can use the SHOW PROCEDURE STATUS command to return a list of stored procedures.

We can also query the information_schema.routines table to do the same thing.

Continue reading →
MariaDB how to, stored procedures

3 Ways to Check Column Data Type in Oracle

Posted on December 15, 2021 by Ian

Here are three ways to get information about a table’s columns in Oracle, including their data types.

Continue reading →
Oracle data types, how to

4 Ways to Check a Column’s Data Type in MySQL

Posted on December 14, 2021 by Ian

Here are four ways to get the data type of a column in MySQL.

Continue reading →
MySQL data types, how to

Return Random Rows from a Table in MariaDB

Posted on December 14, 2021 by Ian

Here’s a quick way to return random rows from a table in MariaDB.

Continue reading →
MariaDB how to

MAX() Function in PostgreSQL

Posted on December 14, 2021 by Ian

In PostgreSQL, the MAX() function computes the maximum of the non-null input values and returns the result.

This function can be used on any numeric, string, date/time, or enum type, as well as inet, interval, money, oid, pg_lsn, tid, and arrays of any of these types.

Continue reading →
PostgreSQL aggregate functions, aggregation, functions, what is

MIN() Function in PostgreSQL

Posted on December 14, 2021 by Ian

In PostgreSQL, the MIN() function computes the minimum of the non-null input values and returns the result.

This function can be used on any numeric, string, date/time, or enum type, as well as inet, interval, money, oid, pg_lsn, tid, and arrays of any of these types.

Continue reading →
PostgreSQL aggregate functions, aggregation, functions, what is
  • «
  • 1
  • …
  • 164
  • 165
  • 166
  • 167
  • 168
  • …
  • 389
  • »

About Database.Guide | Privacy Policy