*
This page is part of MariaDB's Documentation.
The parent of this page is: SQL Operators for MariaDB Xpand
Topics on this page:
Overview
Multiplication.
USAGE
number1 * number2
Value Name | Description |
|---|---|
| The numbers to multiply |
DETAILS
The * operator multiplies two numbers together, similar to the MUL() function.
A NULL is returned if either value is NULL.
EXAMPLES
SELECT 10.5 * 4;
+----------+
| 10.5 * 4 |
+----------+
| 42.0 |
+----------+
