answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: Which function returns number of fields in a result set?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What function returns a result based on a condition?

IF


Which logical function returns a true result only when all its arguments are true?

The AND function.


Difference between subroutine and function?

Both A function and a Sub carry out a procedure, but only A function returns a result while a Sub does not return a result.


What takes a value or values performs an operation and returns a result to the cell?

called function


What is the vlookup function?

looks up a value and returns a related result from the lookup table.


What is the difference between a function and expression?

Functions and Expressions are representations of relationships that exist among entities, however a function always returns a value (or result)


Where does the Subtotal command insert a row?

The SUBTOTAL function does not insert a row. It returns the result in the cell where you type the formula. See related links for information about the SUBTOTAL function.


What is the round function in excel used for?

ROUND is a function that returns a number rounded to a specified number of digits.Syntax: =ROUND( number, digits )number is the number to rounddigits is the number of digits to round the number toEXAMPLES:=ROUND(1/3,2) will return 0.33=ROUND(1/6,2) will return 0.17


What is a max formula?

The MAX function returns the largest number from the cells you evaluate.EXAMPLE:A1 = 104A2 = 623A3 = 23A4 = 234A5 = 198FORMULA: =MAX(A1,A2,A3, A4, A5) will display a result of 623, because A2 contains the largest number.


What is the Function that adds the values of cells in a range and divides the result by the number of cells?

The AVERAGE function.


What is return in programming?

The return statement is used in functions to return control to the caller. If the function is declared non-void, the return statement also allows the programmer to return a value to the caller.


What does the coalesce function do on an SQL server?

The coalesce function returns the first expression that contains the highest in data precedence. If all other expressions are considered 'nonnullable, then the result will be labelled nonnullable as well.