MySQL Operators
- What does RTF refer to?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: C
RTF (Rich Text Format) is a format developed by Microsoft that is understood by many word processors. MS-Word is one such program. Many others such as ‘OpenOffice’ understand it too.
- MySQL automatically converts a date or time value to a number if the value is used in a numeric context.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: B
MySQL automatically converts a date or time value into a number if the value is used in a numeric context and vice versa. A ‘zero’ value can also be represented in MySQL.
- Which operator compares sounds?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: A
The operator ‘SOUNDS LIKE’ is used to compare sound. The ‘RLIKE’ is a synonym for ‘REGEXP’, which is a pattern matching using regular expressions. There are a lot of other operators for use.
- The right shift operator is _____________.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: B
The right shift operator is ‘>>’. It is used to shift the bits of a number towards the right. The left shift operator is ‘<<‘. It is used to shift the bits of a number to the left.
- Which operator is used to return value from JSON columns after evaluating the path and unquoting the result?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: C
The operator ‘–>>’ is used to return values from JSON columns after evaluating the path and unquoting the result. It is equivalent to the function ‘JSON_UNQUOTE(JSON_EXTRACT())’.