tempo1
Programmer
- Feb 20, 2007
- 118
hi everyone,
i created a table with a varchar column and when i tried to insert value into it as follows:
i recieved the following error message:
thanks.
i created a table with a varchar column and when i tried to insert value into it as follows:
Code:
declare @xxx table
(
aaa varchar
)
INSERT INTO @xxx
(
aaa
)
SELECT
cast(333 as varchar)
can anyone tell me why ?String or binary data would be truncated.
The statement has been terminated.
thanks.