Mysql Multiply is used to define the product of any two or more numbers in a table.
Understand with Example
The Tutorial illustrate an example from 'Mysql Multiply'.The example elaborate a query that help you to return the product of any two or more numbers in a specified table.
select(a*b) : The Query return you the product of two numbers a and b.
Query:
The given below query is used to return the product of '2' and '4' as column name Multiply.
mysql> select ( 2*4 )as Multiply; |
Output:-
+----------+ | Multiply | +----------+ | 8 | +----------+ 1 row in set (0.00 sec) |
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: Mysql Multiply
Post your Comment