Skip to content

Database.Guide

MariaDB POWER() Explained

June 10, 2021 by Ian

In MariaDB, POWER() is a synonym to POW(), which is built-in function that returns the value of its first argument raised to the power of its second argument.

Read more

Categories MariaDB Tags functions, numeric functions, what is

How POW() Works in MariaDB

June 10, 2021 by Ian

In MariaDB, POW() is a built-in function that returns the value of its first argument raised to the power of its second argument.

Read more

Categories MariaDB Tags functions, numeric functions, what is

How CONV() Works in MariaDB

June 10, 2021 by Ian

In MariaDB, CONV() is a built-in numeric function that converts numbers between different number bases. For example, you can use it to convert a number from base 10 to base 16.

It returns a string representation of the converted number.

Read more

Categories MariaDB Tags functions, numeric functions, what is

Replace a String with another String in SQL Server (T-SQL)

June 9, 2021 by Ian

In SQL Server you can use the REPLACE() function to replace all occurrences of a string with another string.

The function accepts three arguments; the string that contains the string to be replaced, the string to be replaced, and the string to replace it.

Read more

Categories SQL Server Tags how to, mssql, string functions, t-sql

How the Modulo Operator Works in MariaDB

June 9, 2021 by Ian

In MariaDB, the modulo operator (%) returns the modulo operation. It returns the remainder of its first argument divided by its second argument.

Read more

Categories MariaDB Tags operators, what is

How MOD() Works in MariaDB

June 9, 2021June 9, 2021 by Ian

In MariaDB, MOD() is a built-in function that returns the modulo operation. It returns the remainder of its first argument divided by its second argument.

Read more

Categories MariaDB Tags functions, numeric functions, what is

How LEAST() Works in MariaDB

June 8, 2021 by Ian

In MariaDB, LEAST() is a built-in function that returns the least (i.e. smallest/minimum-valued) argument from its list of arguments.

To get the greatest value, use GREATEST().

Read more

Categories MariaDB Tags comparison functions, functions, numeric functions, what is

How GREATEST() Works in MariaDB

June 8, 2021 by Ian

In MariaDB, GREATEST() is a built-in function that returns the greatest (i.e. largest/maximum-valued) argument from its list of arguments.

To return the minimum-valued argument, use LEAST().

Read more

Categories MariaDB Tags comparison functions, functions, numeric functions, what is

How COT() Works in MariaDB

June 8, 2021 by Ian

In MariaDB, COT() is a built-in numeric function that returns the cotangent of its argument.

In trigonometry, in a right triangle, the cotangent of an angle is the length of the adjacent side divided by the length of the opposite side.

Read more

Categories MariaDB Tags functions, numeric functions, what is

How COS() Works in MariaDB

June 8, 2021 by Ian

In MariaDB, COS() is a built-in numeric function that returns the cosine of its argument, where the argument is provided in radians.

Read more

Categories MariaDB Tags functions, numeric functions, what is
Older posts
Newer posts
← Previous Page1 … Page243 Page244 Page245 … Page423 Next →

About | Privacy Policy

© 2026 Database.Guide • All rights reserved