InterviewSolution
Saved Bookmarks
| 1. |
What is used to produce a new string from an old string in the desired character set?(a) Introducers(b) CONVERT()(c) CONVERTER()(d) CONVERTS() |
|
Answer» Right option is (b) CONVERT() Explanation: The introducers and CONVERT() clause are not the same in MySQL. An introducer modifies the way a string is interpreted and does not modify the string. CONVERT() produces a new string from the old one. |
|