Difference between revisions of "NUMERIC BUILT IN FUNCTIONS"

From rbachwiki
Jump to navigation Jump to search
(Created page with "==ROUND()== ROUND(49.113212) = 49.11 ==CEIL()== '''Integer value that is greater than or equal to the number''' CEIL(48.99)=49 ==POWER()== POWER(4,2)=16 ==SQRT()== SQR...")
(No difference)

Revision as of 19:10, 5 November 2017

ROUND()

ROUND(49.113212)  = 49.11

CEIL()

Integer value that is greater than or equal to the number

CEIL(48.99)=49

POWER()

POWER(4,2)=16

SQRT()

SQRT(16)=4

GREATEST()

Returns the largest of multiple value

GREATEST(9,67.6,10)67.6