Home »
MCQs »
SQL MCQs »
SQL Comments, Group By, Cast Function MCQs
What will be the output of the below SQL statement?
10. What will be the output of the below SQL statement?
SELECT CAST(25.65 AS int);
- 25
- 26
Answer: A) 25
Explanation:
This statement converts the value to an int datatype.