我正在使用oracle db。我有一些基本的疑问,我创建了一个带有列的表 comments VARCHAR2(2000 BYTE)。如果我试图插入一个2500字节的值 会发生什么?是否
1. It will throw an exception(please give me exception details).
2. It will truncate the 500 bytes data. and insert only first 2000 bytes.
3. Internally it will increases it size and insert entire data.
请指导我。
答案 0 :(得分:1)