InterviewSolution
Saved Bookmarks
| 1. |
The storage in bytes required for VARCHAR(4) type ‘abcd’ is _____________(a) 1(b) 3(c) 5(d) 8 |
|
Answer» Correct option is (c) 5 Easy explanation: ‘VARCHAR’ values are not padded when they are stored. The trailing spaces are retained when values are stored and retrieved in conformance with standard SQL. The given size is 5 bytes. |
|