NUMERIC BUILT IN FUNCTIONS

From rbachwiki
Revision as of 19:10, 5 November 2017 by Bacchas (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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