MySQL Operators
- The maximum non zero value for FLOAT is ______________.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: C
In MySQL, each datatype has its own range. Data types give an idea of the kind of values and the ranges that a variable is allowed to store. The maximum non zero value for FLOAT is 3.402823466E+38.
- Which function returns reference to array of row values?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: D
‘fetchrow_arrayref()’ returns a reference to an array of row values. The function ‘fetchrow_hashref()’ returns reference to hash of row values. ‘fetch()’ is the same as fetchrow_arrayref().
- ‘fetchrow_hashref()’ returns reference to hash of row values keyed by what?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: C
The function ‘fetchrow_hashref()’ returns reference to hash of row values, keyed by the column name. The function ‘fetchrow_arrayref()’ returns a reference to an array of row values.
- Which function returns a reference to hash of row values?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: A
The function ‘fetchrow_hashref()’ returns reference to hash of row values. ‘fetchrow_arrayref()’ returns a reference to an array of row values. ‘fetch()’ is the same as fetchrow_arrayref().
- Which function returns an array of row values?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: C
The function ‘fetchrow_array()’ returns an array of row values. ‘fetchrow_arrayref()’ returns a reference to an array of row values. ‘fetch()’ is the same as fetchrow_arrayref().