-
Suppose a stored function named PI() is written in the database ‘sampdb’. How would it be called?
-
- db.PI()
- MySQL.PI()
- PI()
- sampdb.PI()
- None of these
Correct Option: D
When a stored function is defined with the same name as a built in function, the function name should be qualified with the database name when it is invoked. The function ‘PI()’ is built in.